Why does Windows not recognize the INF file for my device

1

I am trying to install drivers on my computer for a USB device. It shows up in the device manager as Unknown Device underneath Universal Serial Bus controllers. When I try to update the driver with my manufacturer INF, it says

The specified location does not contain information about your hardware

I found a tutorial online for manually installing plug-and-play drivers and found the following information:

  • The Device Instance Id is USB\VID_0000&PID_0000\6&38DAB3F9&0&4 . In the INF file, it shows USB\VID_04DA&PID_1682
  • The Class GUID is {36FC9E60-C465-11CF-8056-444553540000} in the INF file, in the registry it's the same but with a \0018 at the end
  • The Service value is not present
  • Computer is running XP SP 3

What can I do to install this driver?

just.another.programmer

Posted 2013-01-02T20:05:57.427

Reputation: 645

What USB device? – Dave – 2013-01-02T20:18:19.127

1

Vendor ID = 0000 is not an approved value as you can see in this list. The driver seems ok. Your device is the problem. Whats the exact name of that USB device?

– nixda – 2013-01-02T20:22:07.043

Answers

2

Windows seems to recognize the INF file correctly, and rather seems to have trouble with the device itself. 0000 is an invalid vendor number ("VID"), which suggests that the USB device did not initialize correctly with the system. This could be because of a short in the USB plug, the cable, damage to the device itself, or possibly damage to the USB hub that the device is plugged into.

Darth Android

Posted 2013-01-02T20:05:57.427

Reputation: 35 133

Is the VID supplied by the device when it is plugged in without any drivers? Is there any way to overwrite it with the value from my INF file? – just.another.programmer – 2013-01-02T20:59:01.657

1Yes to the first question, no to the second. The DEVICE_ID is a pre-programmed vendor ID and product ID which are manufactured into the hardware, and absolutely necessary for the OS to identify the device and select the appropriate drivers for it. While in theory the OS could try to load a specified driver, the underlying problem is that if the VID and PID can't be read from the device itself, then the device or something connecting it to the computer is fundamentally malfunctioning on a hardware level, and a driver probably wouldn't help at all. – Darth Android – 2013-01-02T21:03:01.137