Windows OS Hub
  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux
  • Home
  • About

Windows OS Hub

  • Windows
    • Windows 11
    • Windows Server 2022
    • Windows 10
    • Windows Server 2019
    • Windows Server 2016
  • Microsoft
    • Active Directory (AD DS)
    • Group Policies (GPOs)
    • Exchange Server
    • Azure and Microsoft 365
    • Microsoft Office
  • Virtualization
    • VMware
    • Hyper-V
  • PowerShell
  • Linux

 Windows OS Hub / Windows Server 2022 / Prevent Server Manager from Starting at Logon on Windows Server

April 11, 2024

Prevent Server Manager from Starting at Logon on Windows Server

The Server Manager dashboard opens automatically when you log on to Windows Server with an account that is a member of the local Administrators group. Server Manager console allows you to add or remove Windows Server roles or features, manage specific roles (most commonly used to manage an RDS deployment), run RSAT management tools, and view the status of local or remote servers. Most administrators prefer to disable the auto-start of the Server Manager console at logon. If necessary, you can open this console manually from a shortcut in the Start menu.

Let’s look at how to disable the automatic start of the Server Manager dashboard in Windows Server 2022/2019/2016.

You can disable the automatic start of the Server Manager console for the current user via the Manage -> Server Manager Properties menu.

Server Manager dashboard auto launch on Windows Server

Check the option Do not start Server Manager automatically at logon. Do not start Server Manager automatically at logon

There are also several ways to disable Server Manager auto-launch for all administrators.

Method 1. Disable the Server Manager scheduled task

A separate scheduled task is used to run the Server Manager automatically when the user logs on. Open the taskschd.msc console and navigate to Microsoft\Windows\Server Manager. Disable the ServerManager task.

Disable ServerManager scheduled task

You can also use PowerShell to disable the scheduler task:

Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask

Disable ServerManager task with PowerShell

Method 2. Disable Server Manager Auto Start Using Group Policy

There is a separate Group Policy option that allows disabling the automatic startup of Server Manager.

You can use the local gpedit.msc editor to enable this setting on a standalone computer. To apply this policy to all servers in the AD domain, create a GPO using the gpmc.msc console and link the policy to the OU containing the Windows Server computers or to the domain root. To apply the policy to Windows Server hosts only, you can configure a WMI filter.

Go to Computer Configuration -> Policies -> Administrative Templates -> System -> Server Manager and enable the Do not display Server Manager automatically at logon policy.

GPO: Do not display Server Manager automatically at logon

Method 3. Disable Server Manager at Logon via Registry.

The above policy corresponds to the DoNotOpenServerManagerAtLogon registry parameter in the HKLM\SOFTWARE\Microsoft\ServerManager key. To prevent the Server Manager from starting automatically, you can change the value of this parameter from 0 to 1:

REG ADD "HKLM\SOFTWARE\Microsoft\ServerManager" /v DoNotOpenServerManagerAtLogon /t REG_DWORD /d 1 /f

Or you can change the registry value using PowerShell:

Set-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\ServerManager" -name "DoNotOpenServerManagerAtLogon" -Value 1 -Force -ErrorAction SilentlyContinue

DoNotOpenServerManagerAtLogon -registry parameter

0 comment
4
Facebook Twitter Google + Pinterest
Group PoliciesPowerShellWindows Server 2019Windows Server 2022
previous post
How to Enable and Configure Wake-on-LAN (WoL) in Windows
next post
Set up SSH Key-Based Authentication on VMware ESXi

Related Reading

Fix: Remote Desktop Licensing Mode is not Configured

August 24, 2023

How to Install Remote Server Administration Tools (RSAT)...

March 17, 2024

Managing Windows Firewall Rules with PowerShell

March 11, 2024

Configure Windows LAPS (Local Administrator Passwords Solution) in...

March 15, 2024

Tracking Printer Usage with Windows Event Viewer Logs

March 12, 2024

Adding Multiple Alternate DNS Names for a Windows...

September 3, 2024

Exclude a Specific User or Computer from Group...

March 16, 2025

Add an Additional Domain Controller to an Existing...

March 15, 2024

Leave a Comment Cancel Reply

join us telegram channel https://t.me/woshub
Join WindowsHub Telegram channel to get the latest updates!

Recent Posts

  • Map a Network Drive over SSH (SSHFS) in Windows

    May 13, 2025
  • Configure NTP Time Source for Active Directory Domain

    May 6, 2025
  • Cannot Install Network Adapter Drivers on Windows Server

    April 29, 2025
  • Change BIOS from Legacy to UEFI without Reinstalling Windows

    April 21, 2025
  • How to Prefer IPv4 over IPv6 in Windows Networks

    April 9, 2025
  • Load Drivers from WinPE or Recovery CMD

    March 26, 2025
  • How to Block Common (Weak) Passwords in Active Directory

    March 25, 2025
  • Fix: The referenced assembly could not be found error (0x80073701) on Windows

    March 17, 2025
  • Exclude a Specific User or Computer from Group Policy

    March 12, 2025
  • AD Domain Join: Computer Account Re-use Blocked

    March 11, 2025

Follow us

  • Facebook
  • Twitter
  • Telegram
Popular Posts
  • Fix: Remote Desktop Licensing Mode is not Configured
  • How to Delete Old User Profiles in Windows
  • Allow Non-admin Users RDP Access to Windows Server
  • How to Backup and Copy Local Group Policy Settings to Another Computer
  • How to Allow Non-Admin User to Start/Stop Service in Windows
  • How to Reset the Group Policy Settings on Windows
  • How to Disable NTLM Authentication in Windows Domain
Footer Logo

@2014 - 2024 - Windows OS Hub. All about operating systems for sysadmins


Back To Top