Recently Microsoft rolled out some spying updates, which track your activity and send everything to Microsoft. I wrote some simple batch script which removes all these updates at once. If you use Windows 7, Windows 8, Windows 8.1 or Windows 10 and don’t want to be tracked by Microsoft, you should remove these updates.
Below are couple of scripts – one removes them silently other show pop-ups for each update removal. You can copy paste or download them. Important to run the script as administrator.
Here’s the content of batch file. This script will pop-up uninstall window for each update, if you want to remove them silently use the second script (Download the script – unzip and run it as administrator):
1 2 3 4 5 6 |
wusa /uninstall /kb:3068708 /norestart wusa /uninstall /kb:3075249 /norestart wusa /uninstall /kb:3080149 /norestart wusa /uninstall /kb:2976978 /norestart wusa /uninstall /kb:3021917 /norestart wusa /uninstall /kb:2952664 /norestart |
Script for silent removal (Download the script – unzip and run it as administrator):
1 2 3 4 5 6 7 |
@echo off wusa /uninstall /kb:3068708 /quiet /norestart wusa /uninstall /kb:3075249 /quiet /norestart wusa /uninstall /kb:3080149 /quiet /norestart wusa /uninstall /kb:2976978 /quiet /norestart wusa /uninstall /kb:3021917 /quiet /norestart wusa /uninstall /kb:2952664 /quiet /norestart |
After running the script you should reboot your PC.
If I’ll find more updates which should be removed, I’ll update the post.