在 Windows 中扫描连接的 USB 设备的工具
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/3721763/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Tool for Scanning for Attached USB Devices in Windows
提问by Jim Fell
Can anyone recommend a (preferably free) tool for scanning for attached USB devices in a Windows environment? This is for development purposes only. I have a USB peripheral that I know works when it is attached to my system, but I'm having trouble finding it in the Device Manager. I would like to be able to scan for it specifically because I am extending my application to support more than one type of USB device, but it's hard to scan for. Thanks.
任何人都可以推荐一个(最好是免费的)工具来在 Windows 环境中扫描连接的 USB 设备吗?这仅用于开发目的。我有一个 USB 外围设备,当它连接到我的系统时我知道它可以工作,但是我在设备管理器中找不到它。我希望能够专门扫描它,因为我正在扩展我的应用程序以支持不止一种类型的 USB 设备,但很难扫描。谢谢。
回答by Oleg
I would recommend you devcon.exeutility (see http://support.microsoft.com/kb/311272). The call
我会向您推荐devcon.exe实用程序(请参阅http://support.microsoft.com/kb/311272)。电话
devcon.exe find USB\*
will show the information which you need. With respect of the utility you can do the most things which you can do with the Device Manager.
将显示您需要的信息。关于该实用程序,您可以做大多数可以使用设备管理器做的事情。
You can download WDK(also known as DDK). After installation of of WDK look in C:\WinDDK\7600.16385.1\tools\devcon\i386 directory for the utility. Its source (if needed) you will find in C:\WinDDK\7600.16385.1\src\setup\devcon directories.
您可以下载WDK(也称为DDK)。安装 WDK 后,在 C:\WinDDK\7600.16385.1\tools\devcon\i386 目录中查找该实用程序。它的源代码(如果需要)可以在 C:\WinDDK\7600.16385.1\src\setup\devcon 目录中找到。
回答by SeanJ
回答by mroxanas
Perhaps USBDeview from Nirsoft
也许来自 Nirsoft 的 USBDeview