如何从设备管理器获取信息?
如何在我的 C# 应用程序中读取有关设备的特定信息? 我已尝试过 WMI,但它没有提供我需要的信息。
我想要的信息存储在设备的“详细信息”选项卡中,而我想要的信息是“家长”。
我也查看了regedit,但没有任何运气。
How can I, in my C# applictation, read specific information about a device?
I have tried WMI and it does not provide the information that I need.
The information that I want is stored in the Details tab of a device and the information I want there is "Parent".
I have also looked in regedit, without any luck.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Microsoft 提供了一个示例:http://support.microsoft.com/kb/311272
从 C# 中,捕获 devcon 的输出可能比集成 API 更容易。如果您觉得舒服,C++/CLI 是迄今为止将设备信息导入 .NET 的最简单方法(我之前已经这样做过)。
Microsoft provides a sample: http://support.microsoft.com/kb/311272
From C#, it might be easier to capture the output of devcon than integrating the APIs. If you feel comfortable with it, C++/CLI is by far the easiest way to get device information into .NET (I've done this before).
这些 API 应该可以帮助您:http://msdn.microsoft.com/en-us/library/ff550630(VS.85).aspx#retriving_the_parent_of_a_device_inst
看起来SetupAPI可以用作Windows Vista或更高版本上的替代方案。以上方法适用于Win2000+
These APIs should get you going: http://msdn.microsoft.com/en-us/library/ff550630(VS.85).aspx#retrieving_the_parent_of_a_device_inst
Looks like SetupAPI can be used as an alternative on Windows Vista or newer. The above method works on Win2000+