使用 C#/pInvoke 检测 Windows XP 上的错误设备

发布于 2024-08-08 12:19:34 字数 102 浏览 2 评论 0原文

如何查询所有检测到的设备的状态?

其中设备是 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 技术交流群。

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

发布评论

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

评论(2

不语却知心 2024-08-15 12:19:34

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.

萌酱 2024-08-15 12:19:34

虽然我以前从未尝试过,但我认为您想要使用的是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.

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