简体   繁体   English

如何使用设备ID获取USB硬件ID?

[英]how to get USB hardware id using device id?

How to get hardware id of the usb device using device id...i am using vc++6.0 and OS is xp. 如何使用设备ID获取USB设备的硬件ID ...我使用的是vc ++ 6.0,OS是xp。 is it possible by using wmi. 是不是可以使用wmi。

Finally i solved my problem...thanks for your replies... I am posting the code here, it may be useful for someone... by this code we can get all hardwareids of the devices which are connceted to our system.. 最后我解决了我的问题...感谢您的回复...我在这里发布代码,它可能对某人有用...通过此代码我们可以得到所有设备的硬件,这些设备都是我们的系统。

HDEVINFO hDevInfo;
   SP_DEVINFO_DATA DeviceInfoData;
   DWORD i;

   // Create a HDEVINFO with all present devices.
   hDevInfo = SetupDiGetClassDevs(NULL,
       0, // Enumerator
       0,
       DIGCF_PRESENT | DIGCF_ALLCLASSES );

   if (hDevInfo == INVALID_HANDLE_VALUE)
   {
       //Error handling here.
       printf("Error Details:[%s]\n","INVALID_HANDLE_VALUE");
       return 1;
   }

   // Enumerate through all devices in Set.

   DeviceInfoData.cbSize = sizeof(SP_DEVINFO_DATA);
   for (i=0;SetupDiEnumDeviceInfo(hDevInfo,i,
       &DeviceInfoData);i++)
   {
       DWORD DataT;
       LPTSTR buffer = NULL;
       LPTSTR hwbuffer=NULL;
       DWORD buffersize = 0;

       //
       // Call function with null to begin with, 
       // then use the returned buffer size (doubled)
       // to Alloc the buffer. Keep calling until
       // success or an unknown failure.
       //
       //  Double the returned buffersize to correct
       //  for underlying legacy CM functions that 
       //  return an incorrect buffersize value on 
       //  DBCS/MBCS systems.
       // 
       while (!SetupDiGetDeviceRegistryProperty(
           hDevInfo,
           &DeviceInfoData,
           SPDRP_HARDWAREID,
           &DataT,
           (PBYTE)buffer,
           buffersize,
           &buffersize))
       {

           if (GetLastError() == 
               ERROR_INSUFFICIENT_BUFFER)
           {
               // Change the buffer size.
               if (buffer) LocalFree(buffer);
               // Double the size to avoid problems on 
               // W2k MBCS systems per KB 888609. 
              buffer = (char*)LocalAlloc(LPTR,buffersize * 2);
           }
           else
           {
               //Error handling here.
               //printf("Error Details:[%s]\n",GetLastError());
               break;
           }
       }
        printf("Test Result:[%s]\n",buffer);



       if (buffer) LocalFree(buffer);
   }


   if ( GetLastError()!=NO_ERROR &&
        GetLastError()!=ERROR_NO_MORE_ITEMS )
   {
       // Error handling here.
       printf("Error Details:[%s]\n",GetLastError());
       return 1;
   }

   //  Cleanup
   SetupDiDestroyDeviceInfoList(hDevInfo);


   return 0;

You might be somewhat confused because you assume the hardware ID. 因为你承担硬件ID你可能会有些困惑。 IoGetDeviceProperty(yourDevice, DevicePropertyHardwareID, ...) returns a list. IoGetDeviceProperty(yourDevice, DevicePropertyHardwareID, ...)返回一个列表。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM