我正在尝试以编程方式获取驱动程序的版本号。似乎是通过使用SetupDiEnumDriverInfo
来获取SP_DRVINFO_DATA
结构并检查DriverVersion field
.
以下代码有效,但为同一驱动程序返回两个不同版本。我的设备是一个自定义 USB 设备,只有一个 .sys 文件。只有一台设备连接到我的机器。我指定DIGCF_PRESENT
只查询当前连接设备的驱动程序。
int main(void)
{
// Get the "device info set" for our driver GUID
HDEVINFO devInfoSet = SetupDiGetClassDevs(
&GUID_DEVINTERFACE_USBSPI, NULL, NULL,
DIGCF_PRESENT | DIGCF_DEVICEINTERFACE);
// Cycle through all devices currently present
for (int i = 0; ; i++)
{
// Get the device info for this device
SP_DEVINFO_DATA devInfo;
devInfo.cbSize = sizeof(SP_DEVINFO_DATA);
if (!SetupDiEnumDeviceInfo(devInfoSet, i, &devInfo))
break;
// Build a list of driver info items that we will retrieve below
if (!SetupDiBuildDriverInfoList(devInfoSet,
&devInfo, SPDIT_COMPATDRIVER))
return -1; // Exit on error
// Get all the info items for this driver
// (I don't understand why there is more than one)
for (int j = 0; ; j++)
{
SP_DRVINFO_DATA drvInfo;
drvInfo.cbSize = sizeof(SP_DRVINFO_DATA);
if (!SetupDiEnumDriverInfo(devInfoSet, &devInfo,
SPDIT_COMPATDRIVER, j, &drvInfo))
break;
printf("Driver version is %08x %08x\n",
(unsigned)(drvInfo.DriverVersion >> 32),
(unsigned)(drvInfo.DriverVersion & 0xffffffffULL));
}
}
SetupDiDestroyDeviceInfoList(devInfoSet);
return 0;
}
在我的机器上打印:
Driver version is 00000000 000015d3
Driver version is 00020004 00000000
在朋友的机器上,它打印:
Driver version is 00020004 00000000
Driver version is 00020004 00000000
第二行匹配设备管理器报告的数字。
免责声明:我之前问过一个类似的问题。这是一个关于为什么 SetupDiEnumDriverInfo 返回多个驱动程序版本的新问题。