用于转储设备管理器中显示的所有设备属性的命令行工具
在设备管理器中,单击特定设备将打开一个对话框,其“详细信息”选项卡显示该设备的各种属性。有没有命令行工具可以将其转储出来?我需要区分两个设备的所有属性。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在设备管理器中,单击特定设备将打开一个对话框,其“详细信息”选项卡显示该设备的各种属性。有没有命令行工具可以将其转储出来?我需要区分两个设备的所有属性。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
在我看来,
msinfo32
提供了您可能想要的所有信息,包括端口、IRQ 和使用的地址。尝试:
msinfo32 /report msiout.txt
请注意,命令提示符会立即返回,但
msinfo
在后台运行。您需要等待文件显示。It seems to me that
msinfo32
puts out all the information you could want including ports, IRQs, and addresses used.try:
msinfo32 /report msiout.txt
Note that the command prompt returns immediately, but
msinfo
runs in the background. You need to wait for the file to show up.msinfo32 有许多命令行开关,可用于将输出转储到文件
msinfo32 has a number of command line switches you can use to dump the output to a file
Devcon 就是这样一种工具。它由 Microsoft 构建,并且是开源的。
例如。要检查系统上所有 PCI 设备的状态,可以使用:-
同样,要检查所有设备的状态:-
有关该工具的更多信息及其用法在其 文档。
源代码可以在 github 上找到。
该实用程序随 Windows SDK、Visual Studio 和 WDK 一起安装;请参阅此。
在我的计算机上,该工具的 64 位版本位于 C:\Program Files (x86)\Windows Kits\10\Tools\x64
Devcon is one such tool. It is built by Microsoft, and is open source.
For eg. to Check status of all PCI devices on the system, on could use:-
Similarly, to check status of all devices :-
More information about the tool, and its usage is given in its documentation.
The source code can be found on github.
The utility gets installed with Windows SDK, Visual Studio, and WDK; see this.
On my machine the 64 bit version of the tool is located in
C:\Program Files (x86)\Windows Kits\10\Tools\x64
通过 PowerShell 获取设备管理器、设备属性详细信息选项卡中看到的所有内容:
Get-PnpDevice -InstanceId“USB\VID_0979*”|获取 PnpDeviceProperty | Export-Csv DevDetails.csv
我猜Microsoft 不再建议使用
devcon.exe
建议使用内置的pnputil.exe
:) pnputil 示例Get everything seen in Device Manager, Device Properties Details tab via PowerShell:
Get-PnpDevice -InstanceId "USB\VID_0979*" | Get-PnpDeviceProperty | Export-Csv DevDetails.csv
I guess Microsoft doesn't recommend using
devcon.exe
anymore suggesting to usepnputil.exe
which is built-in :) pnputil examples