Created
August 8, 2020 19:45
-
-
Save wildmichael/81baef8029ebbaeaf18e5f1b160a024e to your computer and use it in GitHub Desktop.
Temporarily enable Windows Store
This file contains 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
# enable windows store again overriding group policy | |
# TODO does not work properly... | |
reg add HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate /v DoNotConnectToWindowsUpdateInternetLocations /d 0 /t REG_DWORD /f | |
reg add HKLM\SOFTWARE\Policies\Microsoft\WindowsStore /v RemoveWindowsStore /d 0 /t REG_DWORD /f | |
reg add HKLM\SOFTWARE\Policies\Microsoft\WindowsStore /v RequirePrivateStoreOnly /d 0 /t REG_DWORD /f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment