Created
March 7, 2018 17:50
-
-
Save David-Lor/9257ce3fd5f88263a901a3e1a7f5cda0 to your computer and use it in GitHub Desktop.
Disable Windows Update "Watchdog"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:loop | |
sc stop "wuauserv" | |
sc config "wuauserv" start= disabled | |
timeout 15 | |
goto loop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment