Driver installation checking
-
How can be tested - in VC++6 that a driver is installed or not? We know the driver name.
36. When you surround an army, leave an outlet free. ... Do not press a desperate foe too hard. SUN-TZU - Art of War
How about starting with:
EnumDeviceDrivers(aDrivers, sizeof(aDrivers), &cbNeeded)
(SDK) and test if the driver is in the list? You could get additional infos withGetDeviceDriverBaseName(aDrivers[i], szBaseName,sizeof(szBaseName))
andGetDeviceDriverFileName(aDrivers[i], szDriverFileName,sizeof(szDriverFileName))
greetings, ralf. -
How about starting with:
EnumDeviceDrivers(aDrivers, sizeof(aDrivers), &cbNeeded)
(SDK) and test if the driver is in the list? You could get additional infos withGetDeviceDriverBaseName(aDrivers[i], szBaseName,sizeof(szBaseName))
andGetDeviceDriverFileName(aDrivers[i], szDriverFileName,sizeof(szDriverFileName))
greetings, ralf.