If you want to control your windows updates see the attached file
code posted here as well, just save it to a file called update_control.bat
Code:
@echo off
:START
@cls
@echo This utility will allow you to Enable or Disable windows updates
@echo You MUST run it as administrator for it to work
@echo.
@echo Type 1 to Disable Windows Updates
@echo Type 2 to Enable Windows Updates
@echo Type 3 to Disable Windows Installer
@echo Type 4 to Enable Windows Installer
@echo Type 5 to Exit
SET /p CHOICE=Type choice and hit enter
IF '%CHOICE%'=='1' GOTO DISABLEUPDATES
IF '%CHOICE%'=='2' GOTO ENABLEUPDATES
IF '%CHOICE%'=='3' GOTO DISABLEINSTALLER
IF '%CHOICE%'=='4' GOTO ENABLEINSTALLER
IF '%CHOICE%'=='4' GOTO END
exit
:DISABLEUPDATES
sc config BITS start= disabled
sc failure BITS reset= 86400 actions= //////
net stop BITS
sc config wuauserv start= disabled
sc failure wuauserv reset= 86400 actions= //////
net stop wuauserv
@echo AUtoMatic windows Updates are now DISABLED on the Computer
PING 1.1.1.1 -n 1 -w 5000 >NUL
GOTO START
:ENABLEUPDATES
sc config BITS start= demand
sc failure BITS reset= 86400 actions= restart/15000/restart/30000//1000
sc config wuauserv start= delayed-auto
sc failure wuauserv reset= 86400 actions= restart/15000/restart/30000//1000
net start wuauserv
@echo AutoMatic windows Updates are now ENABLED on the Computer
PING 1.1.1.1 -n 1 -w 5000 >NUL
GOTO START
:DISABLEINSTALLER
sc config msiserver start= disabled
sc failure msiserver reset= 86400 actions= //////
net stop msiserver
pause
GOTO START
:ENABLEINSTALLER
sc config msiserver start= demand
pause
sc failure msiserver reset= 86400 actions= restart/15000/restart/30000//1000
GOTO START
:END
exit