Forked from mikebranstein/disable-windows-update.ps1
Created
October 20, 2018 06:31
-
-
Save mhornsby/cb6afda2ba2edc12d886cd70de09a264 to your computer and use it in GitHub Desktop.
Disables Windows Update with PowerShell
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
# set the Windows Update service to "disabled" | |
sc.exe config wuauserv start=disabled | |
# display the status of the service | |
sc.exe query wuauserv | |
# stop the service, in case it is running | |
sc.exe stop wuauserv | |
# display the status again, because we're paranoid | |
sc.exe query wuauserv | |
# double check it's REALLY disabled - Start value should be 0x4 | |
REG.exe QUERY HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wuauserv /v Start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to set the registry to value 4?