You dont have javascript enabled! Please enable it!

3 Simple Ways to Disable Server Manager at Startup for all Users

3 Min. Read

You have logged onto Windows Server many times and you find that you only have to wait for Server Manager to finish loading. This becomes annoying that you need to wait when you mostly log onto your server and want to complete a specific task that does not require a Server Manager.

This article will show you how to disable Server Manager at startup for all users using group policy, PowerShell, or the command line and save you some time.

Introduction

Today’s post is not related to Virtualization or Cloud topics.

If there is one thing irritating me when I log on to Windows Server is Server Manager.

When you log on to a server, the Server Manager application is automatically launched for you. Sorry thank you, I don’t want this!

How to disable Server Manager at logon?

The easiest way to disable Server Manager is from the Server Manager dashboard itself.

From the Server Manager console, click Manage and click Server Manager Properties. On the Server Manager Properties window as shown in the figure below, check the box “Do not start Server Manager automatically at logon“, and then click OK.

Server Manager Properties
Server Manager Properties

What if you want to automate this process and disable Server Manager at startup for all users?

Getting Started

Before we delve into the methods to disable Server Manager, it’s essential to understand why it launches at startup. Server Manager is a management tool in Windows Server operating systems that helps users configure and manage server roles and features. While it’s incredibly useful for system administrators, the constant startup can be an annoyance for regular users.

Did you move from managing your servers from Server Manager to Windows Admin Center? Windows Admin Center is a freely available management tool for anyone to use and makes managing a set of servers with or without GUI remotely, very easy, especially for “day-to-day activities”.

Related: How to deploy Windows Admin Center in High Availability mode.

So, without further ado, here are the three ways to disable Server Manager:

Disable Server Manager Using Group Policy

To disable Server Manager 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 it to Enabled and click OK.

Disable Server Manager Using Group Policy
Disable Server Manager Using Group Policy

Once the policy is applied, you can test by logging in to a server. The server manager shouldn’t be launching at startup.

Another way to test if the policy has been applied is by checking the Resultant Set of Policy (RSoP) set of policies on the server by running the gpresult/v cmdlet, which will display verbose policy information. This includes detailed settings that were applied with a precedence of 1.

Disable Server Manager Using PowerShell

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 use PowerShell!

And what is surprising is that Server Manager is a scheduled task under Task Scheduler.

You can run the following PowerShell command on any Windows Server:

Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask -Verbose
Disable Server Manager Using PowerShell
Disable Server Manager Using PowerShell

Disable Server Manager Via Command Line

Our third method involves using the Windows Task Scheduler to prevent Server Manager from launching at startup.

You can disable Server Manager through the command line by running the following command in the cmd window:

schtasks.exe /change /tn "MicrosoftWindowsServer ManagerServerManager" /disable

The server Manager is gone forever now Winking smile

Conclusion

In this article, we’ve explored three simple yet effective methods to disable Server Manager at startup. Whether you’re using Windows Server for personal or professional purposes, these methods will help you save time and streamline your system’s booting process. Say goodbye to unwanted pop-ups and regain control of your Windows Server.

__
Thank you for reading my blog.

If you have any questions or feedback, please leave a comment.

-Charbel Nemnom-

Photo of author
About the Author
Charbel Nemnom
Charbel Nemnom is a Senior Cloud Architect with 20+ years of IT experience. As a Swiss Certified ICT Security Expert, CCSP, CISM, MVP, and MCT, he excels in optimizing mission-critical enterprise systems. His extensive practical knowledge spans complex system design, network architecture, business continuity, and cloud security, establishing him as an authoritative and trustworthy expert in the field. Charbel frequently writes about Cloud, Cybersecurity, and IT Certifications.
Previous

It’s Time to Take Off To The MVP Global Summit 2016 #MVP #MVPSummit #MVPbuzz

How To Install Windows Nano Server 2016 on HPE ProLiant Gen9 Servers? #NanoServer #HPE

Next

Let me know what you think, or ask a question...

error: Alert: The content of this website is copyrighted from being plagiarized! You can copy from the 'Code Blocks' in 'Black' by selecting the Code. Thank You!