MICROSOFTWindows Server 2022

How to Disable Server Manager At Startup on Windows Server

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

Tick the box “Do not start Server Manager automatically at logon”.

Disable server manager at startup

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

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 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

Go to

Computer Configuration\Policies\Administrative Templates\System\Server Manager

open “Do not display server manager automatically at logon”.

stop server manager from starting GPO

Enable the “Do not display Server Manager automatically at logon” policy and click ok.

disable server manager startup group policy

Disable Server Manager at Logon via Registry

Type regedit in the run box to open the Windows register editor.

Regedit run command

Go to

HKLM\SOFTWARE\Microsoft\ServerManager

Open DoNotOpenServerManagerAtLogon

disable server manager startup via registry

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

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

Navigate to Microsoft\Windows\Server Manager. Right-click on the ServerManager and choose disable.

stop server manager from starting at login via Task Scheduler

Jamil Parvez

Jamil Pervez works as a Network Administrator, based in Kuwait with a Primary focus on Microsoft technologies. Microsoft Certified MCSE, MCTP, MCITP, CCNP, CCIP, CCVP with 20 years of experience in administering Windows Servers, Exchange, VMWare, Veeam B&R, Veritas BackupExec.

Related Articles

Leave a Reply

Back to top button