395 words
2 min read

Disable Server Manager Autostart in Windows Server 2019

By · Solutions Architect · Docker Captain · IBM Champion
Disable Server Manager Autostart in Windows Server 2019

This article is for those looking for a detailed and clear guide on how to disable Server Manager autostart in Windows Server 2019.

NOTE

For 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”.

Disable Server Manager Autostart in Windows Server 2019 - Step 1

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

Disable Server Manager Autostart in Windows Server 2019 - Step 2

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

Disable Server Manager Autostart in Windows Server 2019 - Step 3

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.

Disable Server Manager Autostart in Windows Server 2019 - Step 4

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 in Windows Server 2019 - Step 5

Disable Server Manager autostart using the command:

Terminal window
schtasks /Change /TN "Microsoft\Windows\Server Manager\ServerManager" /Disable

Disable Server Manager Autostart in Windows Server 2019 - Step 6

Server Manager will no longer start automatically.

Disable Server Manager Autostart in Windows Server 2019 - Step 7

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 in Windows Server 2019 - Step 8

Disable Server Manager autostart using the command:

Terminal window
Get-ScheduledTask -TaskName ServerManager | Disable-ScheduledTask

Disable Server Manager Autostart in Windows Server 2019 - Step 9

Server Manager will no longer start automatically.

Disable Server Manager Autostart in Windows Server 2019 - Step 10


Vladimir Mikhalev

Docker Captain  ·  IBM Champion  ·  AWS Community Builder

The Verdict — production-tested analysis on YouTube.

Related Posts

Same category
  1. 1
    Recovering a Corrupt Exchange Database with Stellar Repair — Real-World Lab Test
    SysAdmin & 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.
  2. 2
    Distinctions Between Terminal, Command Line, Shell, and Prompt
    SysAdmin & IT Pro · Learn the differences between terminal, command line, shell, and prompt in Linux. A beginner-friendly guide to essential CLI concepts and tools.
  3. 3
    Install Ubuntu Server 22.04 LTS
    SysAdmin & 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.
  4. 4
    Install OTRS on Ubuntu Server
    SysAdmin & 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

Random
  1. 1
    Install Docmost Using Docker Compose
    Self-Hosting · Learn how to install Docmost using Docker Compose with Traefik and Let's Encrypt. Step-by-step guide for self-hosting a modern documentation platform.
  2. 2
    Install Ollama Using Docker Compose
    AI & MLOps · Deploy Ollama locally with Docker Compose and Traefik. Step-by-step guide for setting up LLMs with HTTPS, domain routing, and secure container orchestration.
  3. 3
    The 80th Anniversary of the Deportation of the Crimean Tatars
    Opinion & Culture · Marking 80 years since the 1944 deportation of Crimean Tatars by Stalin's regime. Explore the tragedy, its impact, and its echoes in modern-day Crimea.
  4. 4
    The End of the Executor — Why Computer Vision Engineers Are Becoming Optional
    Opinion & Culture · Anisoptera's "Dragonfly" platform just proved that specialized CV engineers are no longer irreplaceable. Here is the math ($150k vs $5k) and the architectural blueprint to survive the shift.
Disable Server Manager Autostart in Windows Server 2019
https://heyvaldemar.com/disable-server-manager-autostart-in-windows-server-2019/
Author
Vladimir Mikhalev
Published
2021-03-28
License
CC BY-NC-SA 4.0