Last active
March 1, 2018 06:54
-
-
Save unacceptable/d04448f40d7543bb7cecbcfc3c4ff0ec to your computer and use it in GitHub Desktop.
This will disable Windows Server manager fo the current user.
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
New-ItemProperty ` | |
-Path HKCU:\Software\Microsoft\ServerManager ` | |
-Name DoNotOpenServerManagerAtLogon ` | |
-PropertyType DWORD ` | |
-Value "0x1" ` | |
–Force | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment