Example of Script
for /f "eol=;
tokens=1" %%i in (C:\KBNames.txt)
do call :PROCESS %%i
goto :EOF
:PROCESS
set KB=%*
start /wait
%windir%\$NtUninstall%KB%$\spuninst\spuninst.exe /quiet /norestart
:Exit
Example of KBNames.txt
KB1234567
KB2345678
KB1234567
KB2345678
KB1234567
KB2345678
No comments:
Post a Comment