Deleting Built in Drivers

Associate
Joined
26 Nov 2009
Posts
1,232
Hi, Windows contain many built-in drivers. When you install the latest drivers from the manufacturer and then uninstall them, the built-in drivers are still present and take over. Is it wise to locate and delete the built-in drivers prior to installing the manufacturer drivers to prevent this and also possible conflict?
 
If you really want to delete drivers that aren't in use you can use pnputil.

More info:

https://msdn.microsoft.com/en-us/windows/hardware/drivers/devtest/pnputil

Usage:

-enumerate drivers in the driver store:

pnputil -e

If the list is too long for the command prompt you may pipe the output to a text file:

pnputil -e > C:\somedirectory\somefile.txt

-Driver versions and manufacturers will be displayed along with a file name of the form oem##.inf where ## is a number.

-To delete a driver e.g. oem40.inf (it won't let you if it is in use):

pnputil -d oem40.inf


All of the above can only be run from an elevated command prompt (Run as Administrator).
 
Back
Top Bottom