In this blog, we will examine the steps to disable Server Manager dashboard at logon on Windows Server 2022. You can prevent Server Manager from opening at startup using different methods. Server Manager is a tool that guides system administrators through the installation, configuring, and management of server roles and features that are part of Windows Server.
Let’s examine how to disable the automatic start of the Server Manager dashboard in Windows Server 2022 and other versions.
Disable Server Manager at Startup
Using the Manage and Server Manager Properties menu, you can disable the automatic start of the Server Manager console for the current user.
![Server manager dashboard manage](https://xpertstec.com/wp-content/uploads/2024/08/Server-manager-dashboard-manage.webp)
Tick the box “Do not start Server Manager automatically at logon”.
![Disable server manager at startup](https://xpertstec.com/wp-content/uploads/2024/08/Disable-server-manager-at-startup-1.webp)
You can use PowerShell to disable the server manager.
Type the below command to disable Server Manager at startup.
Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask
![turn off server manager on login powershell](https://xpertstec.com/wp-content/uploads/2024/08/turn-off-server-manager-on-login-powershell.webp)
There are several ways to disable Server Manager auto-launch for all administrators.
Disable Server Manager AutoStart Using Group Policy
A separate Group Policy option allows disabling the server manager on startup GPO.
You can use the local gpedit.msc editor to enable this setting on a single computer. To apply this policy to all servers in the AD domain, create a GPO via the gpmc.msc console and link the policy to the organizational unit containing the Windows Server computers or the domain root.
![Gpedit.msc run command](https://xpertstec.com/wp-content/uploads/2024/08/Gpedit.msc-run-command.webp)
Go to
Computer ConfigurationPoliciesAdministrative TemplatesSystemServer Manager
open “Do not display server manager automatically at logon”.
![stop server manager from starting GPO](https://xpertstec.com/wp-content/uploads/2024/08/stop-server-manager-from-starting-GPO.webp)
Enable the “Do not display Server Manager automatically at logon” policy and click ok.
![disable server manager startup group policy](https://xpertstec.com/wp-content/uploads/2024/08/disable-server-manager-startup-group-policy.webp)
Disable Server Manager at Logon via Registry
Type regedit in the run box to open the Windows register editor.
![Regedit run command](https://xpertstec.com/wp-content/uploads/2024/08/Regedit-run-command.webp)
Go to
HKLMSOFTWAREMicrosoftServerManager
Open DoNotOpenServerManagerAtLogon
![disable server manager startup via registry](https://xpertstec.com/wp-content/uploads/2024/08/disable-server-manager-startup-via-registry.webp)
You can alter the value of this parameter from 0 to 1 to prevent the Server Manager from starting automatically.
![disable startup server manager in registry](https://xpertstec.com/wp-content/uploads/2024/08/disable-startup-server-manager-in-registry.webp)
Disable the Server Manager with the scheduled task
A separate scheduled task is utilized to disable the Server Manager automatically when the user logs on. Open the taskschd.msc console.
![Run command taskschd.msc](https://xpertstec.com/wp-content/uploads/2024/08/Run-command-taskschd.msc_.webp)
Navigate to MicrosoftWindowsServer Manager. Right-click on the ServerManager and choose disable.
![stop server manager from starting at login via Task Scheduler](https://xpertstec.com/wp-content/uploads/2024/08/stop-server-manager-from-starting-at-login-via-Task-Scheduler.webp)