Skip to content

Instantly share code, notes, and snippets.

@x33st0rm
Last active September 14, 2017 18:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save x33st0rm/5788b3d3310eb6e5e33d to your computer and use it in GitHub Desktop.
Save x33st0rm/5788b3d3310eb6e5e33d to your computer and use it in GitHub Desktop.
Windows 7 removal of malicious telemetry/spyware, windows 10 forceful upgrade and otherwise unwanted updates.
@echo off
echo ------------------------------------------------------------------------------
echo Windows 7 Malicious Updates Batch Uninstaller by st0rm ( Updated 03-06-2016 )
echo ------------------------------------------------------------------------------
echo Prevent future malicious updates by disabling automatic windows updates.
echo Reboot manually afterwards to finish process.
echo ------------------------------------------------------------------------------
pause
echo Uninstalling KB971033
wusa /uninstall /kb:971033 /quiet /norestart
echo Uninstalling KB3068707
wusa /uninstall /kb:3068707 /quiet /norestart
echo Uninstalling KB2902907
wusa /uninstall /kb:2902907 /quiet /norestart
echo Uninstalling KB3068708
wusa /uninstall /kb:3068708 /quiet /norestart
echo Uninstalling KB2990214
wusa /uninstall /kb:2990214 /quiet /norestart
echo Uninstalling KB3021917
wusa /uninstall /kb:3021917 /quiet /norestart
echo Uninstalling KB2994023
wusa /uninstall /kb:2994023 /quiet /norestart
echo Uninstalling KB2506928
wusa /uninstall /kb:2506928 /quiet /norestart
echo Uninstalling KB2970228
wusa /uninstall /kb:2970228 /quiet /norestart
echo Uninstalling KB2726535
wusa /uninstall /kb:2726535 /quiet /norestart
echo Uninstalling KB2505438
wusa /uninstall /kb:2505438 /quiet /norestart
echo Uninstalling KB2670838
wusa /uninstall /kb:2670838 /quiet /norestart
echo Uninstalling KB3022345
wusa /uninstall /kb:3022345 /quiet /norestart
echo Uninstalling KB3075249
wusa /uninstall /kb:3075249 /quiet /norestart
echo Uninstalling KB3080149
wusa /uninstall /kb:3080149 /quiet /norestart
echo Uninstalling KB2977759
wusa /uninstall /kb:2977759 /quiet /norestart
echo Uninstalling KB2952664
wusa /uninstall /kb:2952664 /quiet /norestart
echo Uninstalling KB3050265
wusa /uninstall /kb:3050265 /quiet /norestart
echo Uninstalling KB2660075
wusa /uninstall /kb:2660075 /quiet /norestart
echo Uninstalling KB2976978
wusa /uninstall /kb:2976978 /quiet /norestart
echo Uninstalling KB3035583
wusa /uninstall /kb:3035583 /quiet /norestart
echo Uninstalling KB2592687
wusa /uninstall /kb:2592687 /quiet /norestart
echo Uninstalling KB3065987
wusa /uninstall /kb:3065987 /quiet /norestart
echo Uninstalling KB2976987
wusa /uninstall /kb:2976987 /quiet /norestart
echo Uninstalling KB2545698
wusa /uninstall /kb:2545698 /quiet /norestart
echo Uninstalling KB2882822
wusa /uninstall /kb:2882822 /quiet /norestart
echo Uninstalling KB2919355
wusa /uninstall /kb:2919355 /quiet /norestart
echo Uninstalling KB3042058
wusa /uninstall /kb:3042058 /quiet /norestart
echo Uninstalling KB3044374
wusa /uninstall /kb:3044374 /quiet /norestart
echo Uninstalling KB3045999
wusa /uninstall /kb:3045999 /quiet /norestart
echo Uninstalling KB3075851
wusa /uninstall /kb:3075851 /quiet /norestart
echo Uninstalling KB3075853
wusa /uninstall /kb:3075853 /quiet /norestart
echo Uninstalling KB3083324
wusa /uninstall /kb:3083324 /quiet /norestart
echo Uninstalling KB3083325
wusa /uninstall /kb:3083325 /quiet /norestart
echo Uninstalling KB3083710
wusa /uninstall /kb:3083710 /quiet /norestart
echo Uninstalling KB3088195
wusa /uninstall /kb:3088195 /quiet /norestart
echo Uninstalling KB3093513
wusa /uninstall /kb:3093513 /quiet /norestart
echo Uninstalling KB3093983
wusa /uninstall /kb:3093983 /quiet /norestart
echo Uninstalling KB2922324
wusa /uninstall /kb:2922324 /quiet /norestart
echo Uninstalling KB3012973
wusa /uninstall /kb:3012973 /quiet /norestart
echo Uninstalling KB3015249
wusa /uninstall /kb:3015249 /quiet /norestart
echo Uninstalling KB3035583
wusa /uninstall /kb:3035583 /quiet /norestart
echo Process Successful!
echo A total of 42 updates has been uninstalled.
echo ------------------------------------------------------------------------------
echo REMEMBER TO REBOOT AND DISABLE AUTOMATIC UPDATES
pause
END
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment