Uninstall_KB.cmd 418 B

1234567891011
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. set files=3021917 3035583 2990214 3050265 2952664 3022345 3068708 3065987 3068708 3022345 3075249 3080149
  4. for %%f in (%files%) do (
  5. @echo.Uninstalling KB%%f
  6. start "" /b /w %WINDIR%\SysWOW64\wusa.exe /uninstall /quiet /norestart /kb:%%f /log:%~n0.log
  7. if !ERRORLEVEL! NEQ 0 (@echo.Failed. Error:!errorlevel!)
  8. )
  9. rem dism /online /get-packages /format:table
  10. pause