Skip to content

Instantly share code, notes, and snippets.

@shrihari1999
Created September 18, 2025 13:31
Show Gist options
  • Select an option

  • Save shrihari1999/ecbdb21d0fbd196642661d44ab2c7f53 to your computer and use it in GitHub Desktop.

Select an option

Save shrihari1999/ecbdb21d0fbd196642661d44ab2c7f53 to your computer and use it in GitHub Desktop.
Stop windows update
@echo off
:loop
sc query wuauserv | findstr /I /C:"STOPPED" > NUL
if not %errorlevel%==0 (
net stop wuauserv
)
TIMEOUT /T 5 /NOBREAK > NUL
goto loop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment