Our device internally hooks up a serial port device using a USB to serial converter. We can program the FTDI chip in it and think that we can identify it using a device description that we choose.
As I plug in my USB to serial converter, windows initially shows this raw device description in a popup. When the driver is installed it will change to the driver description, which is the FTDI driver description. I can see the description in de USB serial Converter under the "Universal Serial Bus controllers" as "Bus reported device description", but don't know how to get the COM port in c# that belong to that USB device.
First I was using SerialPort.GetPortNames();, but that doesn't have any information about the USB device. Then I tried the solution in: How to get Bus Reported Device Description using C# But the "Bus reported device description" seems to be from the com-port and not the underlying USB device.
So my question is: How can I get the comport (COM??) that is linked to our USB controller that has the "Bus reported device description" that I programmed into this USB to serial converter chip.