Phoenix
Phoenix

Reputation: 31

Get USB serial number using VB.net?

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

Upvotes: 3

Views: 10769

Answers (1)

Den
Den

Reputation: 16826

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.

Upvotes: -1

Related Questions