Windows device name and category #817
Replies: 2 comments 4 replies
-
I don't know where the Windows pull that as well, maybe you could capture the enumeration of that device. If it is windows specific thing, it is probably MS OS v2 descriptors https://docs.microsoft.com/en-us/windows-hardware/drivers/usbcon/microsoft-os-2-0-descriptors-specification . |
Beta Was this translation helpful? Give feedback.
-
I believe the only way is to create a custom Windows driver for your device (INF file), and that it cannot extract a device name from the descriptors. A Logitech mouse I have here does get a special name, but it does not match any of the names in the descriptors. The default Windows driver does come with a database of common VID/PID that it uses for names. See: |
Beta Was this translation helpful? Give feedback.
-
Hey,
I'm not very good with USB stuff, but I'm currently developing a tool that interfaces as a generic HID device, and I was wondering if it could be possible to change the device name and/or the category in the Windows device manager.
Here it is right now:
Is it possible for it to show under the category "BioTool" and the name "Tester"for example ?, I searched long and large, but I could find an example that do that.
Here is my current descriptor configuration and device descriptor:
I successfully managed to change the manufacturer, product and serial with
string_desc_arr
, but I had no luck changing the device name.I've looked into https://github.com/stacksmashing/gb-link-firmware/blob/main/usb_descriptors.c#L158, and it seems that there is some Microsoft specific configs but there isn't really documentation that I could find
Beta Was this translation helpful? Give feedback.
All reactions