Today’s post is not related to Virtualization or Cloud topic.
If there is one thing irritating me when I log on to Windows Server is Server Manager.
When you logs on to a server, the Server Manager application is automatically launched for you. Sorry thank you, I don’t want this!
This can be disabled every time you log on with different user via the Server Manager properties as shown in the following screenshot.
However, to disable it for all servers and all users, you can leverage Group Policy under:
Computer Configuration | Administrative Templates | System | Server Manager
Double-click on Do not display Server Manager automatically at logon and Set to Enabled and click OK.
However, if you are not using Active Directory in your environment and you want to automate this behavior for all users… What you can do is to use Windows PowerShell!
And what is surprising is that Server Manager is a scheduled task under Task Scheduler.
Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask -Verbose
Server Manager is gone forever now
Cheers,
[email protected]