用于转储设备管理器中显示的所有设备属性的命令行工具

发布于 2024-09-10 03:59:39 字数 83 浏览 4 评论 0 原文

在设备管理器中,单击特定设备将打开一个对话框,其“详细信息”选项卡显示该设备的各种属性。有没有命令行工具可以将其转储出来?我需要区分两个设备的所有属性。

In Device Manager, clicking on a specific device takes you to a dialog box, whose Details tab shows all sorts of properties of the device. Is there a command line tool to dump this out? I need to diff all the properties of two devices.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

红玫瑰 2024-09-17 03:59:39

在我看来,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.

妖妓 2024-09-17 03:59:39

msinfo32 有许多命令行开关,可用于将输出转储到文件

msinfo32 has a number of command line switches you can use to dump the output to a file

眼中杀气 2024-09-17 03:59:39

Devcon 就是这样一种工具。它由 Microsoft 构建,并且是开源的。

例如。要检查系统上所有 PCI 设备的状态,可以使用:-

devcon status pci*

同样,要检查所有设备的状态:-

devcon status *

有关该工具的更多信息及其用法在其 文档

源代码可以在 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:-

devcon status pci*

Similarly, to check status of all devices :-

devcon status *

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

标点 2024-09-17 03:59:39

通过 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 use pnputil.exe which is built-in :) pnputil examples

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文