We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1f8de4 commit 2c9b0e2Copy full SHA for 2c9b0e2
1 file changed
eng/dump.bat
@@ -11,10 +11,10 @@ tabletdrivercleanup.exe --dump
11
pnputil /enum-drivers > .\dumps\pnputil_drivers.txt
12
pnputil /enum-devices /connected /drivers > .\dumps\pnputil_devices.txt
13
14
-md .\dumps\DriverStore
+mkdir ".\dumps\DriverStore" 2>nul
15
16
for /D %%G in ("C:\Windows\System32\DriverStore\FileRepository\*") DO (
17
- md .\dumps\DriverStore\%%~nxG
+ mkdir ".\dumps\DriverStore\%%~nxG" 2>nul
18
for /F %%H in ("%%~G\*.inf") DO (
19
xcopy /Q /Y "%%H" .\dumps\DriverStore\%%~nxG > nul
20
<nul set /p "=Dumped '%%~nxH' !CR!"
0 commit comments