Skip to content

Instantly share code, notes, and snippets.

View thinktwisted's full-sized avatar

thinktwisted thinktwisted

View GitHub Profile
@spy86
spy86 / cleanup.bat
Created January 4, 2019 19:04
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
)