Skip to content

Instantly share code, notes, and snippets.

@spy86
Created January 4, 2019 19:04
Show Gist options
  • Save spy86/82a5060a0a43e97d97b082ad6e91544a to your computer and use it in GitHub Desktop.
Save spy86/82a5060a0a43e97d97b082ad6e91544a to your computer and use it in GitHub Desktop.
Batch script for automatic drivers removal (Windows 10)
@echo off
for /L %%N in (1,1,600) do (
echo Deleting driver OEM%%N.INF
pnputil /d OEM%%N.INF
)
@thinktwisted
Copy link

Thanks for this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment