CMD script to stop and start Windows Update
======================
:سكربت ايقافت خدمات تحديث ويندوز
@echo off
net stop wuauserv
net stop bits
net stop dosvc
sc config wuauserv start= disabled
sc config bits start= disabled
sc config dosvc start= disabled
echo The Windows Update service has been stopped.
pause
======================
سكربت تفعيل خدمات تحديث ويندوز
@echo off
sc config wuauserv start= auto
sc config bits start= auto
sc config dosvc start= auto
net start wuauserv
net start bits
net start dosvc
echo The Windows Update service has been activated.
pause