Deleting .inf and .pnf Files

2vision2 picture 2vision2 · Jul 24, 2012 · Viewed 11.9k times · Source

I manually install my driver using an .inf file. Until now, I deleted the oem.inf and .pnf files from the inf folder to uninstall. Whenever I install a new driver I delete/uninstall the old inf and pnf files.

In my old uninstalls (by deleting .inf and .pnf files), I didn't modify or delete any registry settings.

In this case do I want to change or remove any settings from the registry (for example: devnode)?

Answer

Ilya picture Ilya · Aug 7, 2012

You should use the SetupUninstallOEMInf function to uninstall the .INF (and subsequently .PNF) files. This will take care of the details. pnputil (on Vista and higher) should do the equivalent thing from the command line. However, this function will not delete drivers that are currently installed (e.g. associated with a devnode).

  1. Why are you uninstalling the old driver first? The user might already installed your driver for at least one devnode. Why not use a Microsoft-sanctioned solution such as DpInst? It will do the work required to update the driver.

  2. Passing SUOI_FORCEDELETE to SetupUninstallOEMInf wouldn't be a good idea, cause you'd end up with lingering .INF references in your devnodes (in the registry).

  3. At work I wrote a utility I called DriverUninstaller that deletes the devnodes and then deleted the INFs. I only use this utility for uninstallations. Upgrades are handled by DpInst, as they should be. The flow is roughly:

    1. Enumerate them with SetupAPI (e.g. by device class if your device class is unique)
    2. For each devnode, call SetupDiCallClassInstaller(DIF_REMOVE, ...)
    3. Call SetupDiBuildDriverInfoList to find all .INF files for my device
    4. For each INF, call SetupUninstallOEMInf

If there'll be interest in this utility, I might be able to persuade my employer to open-source it :-)