ECHO ON REM --- remember to invoke from ELEVATED command prompt! REM --- or start the batch with context menu "run as admin". SETLOCAL REM --- (as of 2015-09-07): REM KB3035583 - GWX Update installs Get Windows 10 app in Windows 8.1 and Windows 7 SP1 REM KB3021917 - Update to Windows 7 SP1 for performance improvements REM KB3012973 - Upgrade to Windows 10 Pro REM KB971033 : Á¤Ç°ÀÎÁõ REM --- no longer blocking: REM KB2952664 - Compatibility update for upgrading Windows 7 REM KB2976978 - Compatibility update for Windows 8.1 and Windows 8 REM KB3022345 - Telemetry [Replaced by KB3068708] REM KB3068708 - Update for customer experience and diagnostic telemetry REM --- uninstall updates echo uninstalling updates ... start "title" /b /wait wusa.exe /kb:971033 /uninstall /quiet /norestart echo - next start "title" /b /wait wusa.exe /kb:3035583 /uninstall /quiet /norestart echo - done. timeout 10 REM --- hide updates echo hiding updates ... start "title" /b /wait cscript.exe "%~dp0HideUpdates.vbs" 971033 3035583 echo - done. echo ... COMPLETED (please remember to REBOOT windows, now) pause REM --- EOF