将设备pipe理器导出到一个txt文件

我试图创build一个.bat文件,当运行时,它将所有设备从设备pipe理器导出到.txt文件。

我发现的一切都不清楚。

只是寻找一些指导执行此导出的命令。 谢谢

设备管理器中的所有内容? 我相信这是你正在寻找的。 运行虽然需要一两分钟的时间,但是以.xml格式读取更容易,但是在这里您可以继续。

SET msinfo32="%CommonProgramFiles%\Microsoft Shared\MSInfo\msinfo32.exe" %msinfo32% /nfo hwdres.nfo /categories +resources rename hwdres.nfo hwdres.txt 

在“组件”部分下列出的详细信息是我相信你在之后。

您可以在bacth文件中以这种方式生成文本报告:

 @echo off Title Generate a text report for Devices manager Mode con cols=80 lines=3 cls & color 0A & echo. Set "LogFile=DeviceManager.txt" echo Please wait a while we generate the report in %LogFile% ..... start /wait msinfo32 /report %LogFile% start "" notepad %LogFile% 

有关msinfo32更多信息

看到这里: http : //ss64.com/nt/msinfo32.html