Last active
May 12, 2019 18:11
-
-
Save foxx/49c49ecd9db927086b3ef4f3eea14f58 to your computer and use it in GitHub Desktop.
disable feature upgrade windows 10
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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade] | |
"AllowOSUpgrade"=dword:00000000 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate] | |
"DisableOSUpgrade"=dword:00000001 | |
sc config wuauserv start= disabled | |
sc stop wuauserv | |
reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v "AUOptions" /t REG_DWORD /d "1" /f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment