Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- :: This script removes Windows 7, 8, and 8.1 updates KB2952664, KB2976978, and KB2977759
- :: Version 1.0
- @echo off
- echo:
- for /L %%i in (1,1,60) do (
- echo KB2952664 uninstallation iteration %%i
- start /w wusa.exe /uninstall /quiet /norestart /kb:2952664
- )
- echo:
- for /L %%i in (1,1,99) do (
- echo KB2976978 uninstallation iteration %%i
- start /w wusa.exe /uninstall /quiet /norestart /kb:2976978
- )
- echo:
- for /L %%i in (1,1,60) do (
- echo KB2977759 uninstallation iteration %%i
- start /w wusa.exe /uninstall /quiet /norestart /kb:2977759
- )
- start /w wusa.exe /uninstall /norestart /kb:2952664
- start /w wusa.exe /uninstall /norestart /kb:2976978
- start /w wusa.exe /uninstall /norestart /kb:2977759
- echo:
- echo Please reboot now to complete uninstallation of Windows updates.
- echo:
- pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement