Get USB serial number using VB.net?

Phoenix picture Phoenix · Sep 19, 2010 · Viewed 9.9k times · Source

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

Answer

Den Delimarsky picture Den Delimarsky · Sep 19, 2010

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.