Skip to content

Instantly share code, notes, and snippets.

@Bak-Jin-Hyeong
Created March 5, 2019 07:47
Show Gist options
  • Save Bak-Jin-Hyeong/22785efcad44ab8526cc76f1fe9f1da9 to your computer and use it in GitHub Desktop.
Save Bak-Jin-Hyeong/22785efcad44ab8526cc76f1fe9f1da9 to your computer and use it in GitHub Desktop.
How To Hide Server Manager At Logon
#
# 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