Advertisement
yiwen_akeni

remove driver

Jun 4th, 2025
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.67 KB | Source Code | 0 0
  1. ::Another option (the Microsoft way, without doing random unknown deletings in the registry) is to start CMD as "run as admin" and then list all installed drivers in the Windows 7 driver store via:
  2.  
  3.     pnputil -e
  4.  
  5. :: if this caused a longer list you can pipe that into a file via:
  6.  
  7.     pnputil -e > C:\driverexport.txt
  8.  
  9. ::If you have found now the driver you need to remove use the following comand:
  10.  
  11.     pnputil.exe -d OemNUMBER.inf
  12.  
  13. ::replace NUMBER with your number from your example. You might try to use -F to force the uninstallation. Once a reboot is done the driver should be gone.
  14.  
  15. ::This might be also usefull to delete old drivers and get some HD space back.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement