Does anyone have an idea where I can get the port name printed on my PC?

Using this code:
For i As Integer = 0 To My.Computer.Ports.SerialPortNames.Count - 1 cmbPort.Properties.Items.Add(My.Computer.Ports.SerialPortNames(i)) Next
I could get COM26 , etc., if any, but that is not what I want. Instead of removing COM26 , I want USB-SERIAL CH340 or USB-SERIAL CH340 (COM26) . How could I do this?
source share