使用VB.net获取USB序列号?

发布于 2024-09-24 00:55:01 字数 37 浏览 3 评论 0原文

谁能告诉我如何使用VB.net获取USB序列号(硬件ID)?

Can anyone tell me how to get USB serial number(Hardware ID) using VB.net?

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

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

发布评论

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

评论(1

泅渡 2024-10-01 00:55:01

为此,您应该使用 WMI,特别是查询 Win32_USBController 类。您想要获取的属性是DeviceID

控制台应用程序上下文中的示例 WMI 调用可能如下所示:

Dim mos As New ManagementObjectSearcher("SELECT * FROM Win32_UsbController")

For Each mo As ManagementObject In mos.Get()
    Console.WriteLine(mo.Properties.Item("DeviceID").Value)
Next

Console.ReadLine()

您需要添加对 System.Management 和 System.Management.Instrumentation 的引用才能使用>ManagementObjectSearcher 和ManagementObject

You should use WMI for this, specifically querying the Win32_USBController Class. The property you want to get is DeviceID.'

A sample WMI call in the context of a console application might look like this:

Dim mos As New ManagementObjectSearcher("SELECT * FROM Win32_UsbController")

For Each mo As ManagementObject In mos.Get()
    Console.WriteLine(mo.Properties.Item("DeviceID").Value)
Next

Console.ReadLine()

You would need to add references to System.Management and System.Management.Instrumentation to use ManagementObjectSearcher and ManagementObject.

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