使用 C#/pInvoke 检测 Windows XP 上的错误设备
如何查询所有检测到的设备的状态?
其中设备是 USB 连接的硬件(相机、信用卡读卡器)、PCI 总线连接的硬件或硬盘驱动器。任何在设备管理器中显示为错误的内容都是值得关注的。
How do you query the status of all detected devices?
Where devices are USB connected hardware ( cameras, credit card readers ), PCI bus connected hardware, or hard drives. Anything that can show up as errored in the Device Manager is of interest.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
WMI 可以工作,但速度相当慢,而且有很多活动部件可能会出错。如果您需要更快/更可靠的访问,请尝试SetupDI API(请参阅此)。 pinvoke.net 可以帮助您开始使用 C# 声明。
WMI works, but it's pretty slow and there are a lot of moving parts to go wrong. If you need faster/more reliable access, try the SetupDI APIs (see this). pinvoke.net can get you started with the C# declarations.
虽然我以前从未尝试过,但我认为您想要使用的是WMI:Windows Management Instrumentation。具体来说,您应该查看 System.Management 命名空间。
这是我发现的一个教程,向您展示如何查询连接到系统的硬盘驱动器,以及如何查询正在运行的进程:--> http://msdn.microsoft.com/en-us/library/ system.management.aspx
让我知道这是否有帮助。我之前曾考虑过使用 WMI 来执行简单的 Windows 管理任务,但最终我总是使用简单的注册表脚本。
While I've never tried it before, I think what you want to use is WMI: Windows Management Instrumentation. Specifically, you should look at the System.Management namespace.
Here's a tutorial I found that shows you how to query for hard drives connected to a system, and also how to query for running processes: --> http://msdn.microsoft.com/en-us/library/system.management.aspx
Let me know if this helps. I've considered using WMI before for simple windows management tasks, but I've always ended up using simple registry scripts instead.