PC_Aide

Disabled Windows update.bat

Feb 2nd, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.59 KB | None | 0 0
  1. ::&----------------------------------------------------------------------------------------------------------------------
  2. ::  Docs: sc.exe -> https://ss64.com/nt/sc.html
  3. ::
  4. :: Elevated
  5. ::
  6. ::  mp4 -> https://www.youtube.com/watch?v=dKFBZ_0a1B4
  7. ::
  8. ::&----------------------------------------------------------------------------------------------------------------------
  9.  
  10. :: Show config - dependencies, full path etc
  11. sc qc wuauServ
  12.  
  13. :: Stop service & disabled
  14. net stop wuauServ & sc config wuauServ start= disabled
  15.  
  16. ::Start Windows Update again
  17. sc config wuauServ start= auto & net start wuauServ
Add Comment
Please, Sign In to add comment