Created
March 5, 2019 07:47
-
-
Save Bak-Jin-Hyeong/22785efcad44ab8526cc76f1fe9f1da9 to your computer and use it in GitHub Desktop.
How To Hide Server Manager At Logon
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
# | |
# How To Hide Server Manager At Logon | |
# https://blogs.technet.microsoft.com/rmilne/2014/05/30/how-to-hide-server-manager-at-logon/ | |
# | |
Get-Item HKCU:\Software\Microsoft\ServerManager | |
Get-ItemProperty -Path HKCU:\Software\Microsoft\ServerManager -Name DoNotOpenServerManagerAtLogon | select DoNot OpenServerManagerAtLogon | Ft –AutoSize | |
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