Disable Server Manager Autostart in Windows Server 2019
By Vladimir Mikhalev · Solutions Architect · Docker Captain · IBM Champion
This article is for those looking for a detailed and clear guide on how to disable Server Manager autostart in Windows Server 2019.
NOTEFor instructions on disabling Server Manager autostart in Windows Server 2012 R2, see: Disable Server Manager Autostart in Windows Server 2012 R2.
We go into the system under an account with administrator rights.
Open Server Manager, click on the “Manage” button in the upper right corner of the screen, and select “Server Manager Properties”.

Check the box “Do not start Server Manager automatically at logon” and click on the “OK” button.

Server Manager will no longer start automatically.
You can also disable the automatic start of “Server Manager” through the task scheduler. To do this, you must disable the task that is responsible for the automatic start of “Server Manager”.
In Server Manager, click on the “Tools” button in the upper right corner of the screen and select “Task Scheduler”.

In the “Task Scheduler Library” go to the “Microsoft” section, then to “Windows”, and in the “Server Manager” subsection, select the “Server Manager” task.
In the “Actions” menu, click on the “Disable” button.

Server Manager will no longer start automatically.
In addition, you can disable the task that is responsible for automatically starting Server Manager using the command line.
Press “Start”, specify “cmd” in the search bar, and select “Command Prompt”.

Disable Server Manager autostart using the command:
schtasks /Change /TN "Microsoft\Windows\Server Manager\ServerManager" /Disable
Server Manager will no longer start automatically.

You can also disable the task that is responsible for automatically starting Server Manager using Windows PowerShell.
On the keyboard, press the key combination “Win” and “x” and in the menu that opens, select “Windows PowerShell (Admin)”.

Disable Server Manager autostart using the command:
Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask
Server Manager will no longer start automatically.

The Verdict
Inconvenient truths about shipping in the AI era
Container security, platform engineering, and the agentic shift — tested in production, argued without the hype. The verdict reaches your inbox the moment there's one worth sending.
Related Posts
- 1Recovering a Corrupt Exchange Database with Stellar Repair — Real-World Lab TestSysAdmin & IT Pro · We deliberately broke an Exchange 2019 server to see if Stellar Repair for Exchange could recover a dirty-shutdown EDB file. Step-by-step recovery process, lab setup, and lessons learned.
- 2Distinctions Between Terminal, Command Line, Shell, and PromptSysAdmin & IT Pro · Learn the differences between terminal, command line, shell, and prompt in Linux. A beginner-friendly guide to essential CLI concepts and tools.
- 3Install Ubuntu Server 22.04 LTSSysAdmin & IT Pro · Step-by-step guide to install Ubuntu Server 22.04 LTS. Covers language, disk setup, OpenSSH, user creation, and system configuration for beginners.
- 4Install OTRS on Ubuntu ServerSysAdmin & IT Pro · Comprehensive guide to installing OTRS Community Edition on Ubuntu Server. Learn to configure PostgreSQL, Apache, SSL with Let's Encrypt, and launch OTRS securely.
Random Posts
- 1Enable the Active Directory Recycle Bin in Windows Server 2012 R2SysAdmin & IT Pro · Learn how to enable the Active Directory Recycle Bin in Windows Server 2012 R2 to easily recover deleted AD objects. Step-by-step admin guide.
- 2Top 10 DevOps Tools for 2025 — Must-Have for Developers and EngineersDevOps & Cloud · Explore the top 10 DevOps tools for 2025 to optimize workflows, enhance security, and streamline CI/CD, GitOps, and Kubernetes.
- 3Install ownCloud Using Docker ComposeSelf-Hosting · Learn how to install ownCloud with Docker Compose on Ubuntu using Traefik and Let's Encrypt. Secure, scalable file storage and sharing for your server.
- 4Install Jira Using Docker ComposeSelf-Hosting · Learn how to install Jira using Docker Compose with Traefik and Let's Encrypt. Step-by-step guide to self-host Jira securely and efficiently.