404 words
2 min read

Disable Server Manager Autostart in Windows Server 2012 R2

By · Solutions Architect · Docker Captain · IBM Champion
Cover image for the post 'Disable Server Manager Autostart in Windows Server 2012 R2'

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

NOTE

To learn how to disable Server Manager autostart in Windows Server 2019, read: Disable Server Manager Autostart in Windows Server 2019.

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 2012 R2 - 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 2012 R2 - 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 2012 R2 - 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 2012 R2 - 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.

Click “Start”, point to “cmd” in the search bar, then right-click on “Command Prompt” and select “Run as administrator”.

Disable Server Manager Autostart in Windows Server 2012 R2 - 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 2012 R2 - Step 6

Server Manager will no longer start automatically.

Disable Server Manager Autostart in Windows Server 2012 R2 - Step 7

You can also disable the task that is responsible for automatically starting Server Manager using Windows PowerShell.

On the “Taskbar”, right-click on “Windows PowerShell” and select “Run as administrator”.

Disable Server Manager Autostart in Windows Server 2012 R2 - Step 8

Disable Server Manager autostart using the command:

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

Disable Server Manager Autostart in Windows Server 2012 R2 - Step 9

Server Manager will no longer start automatically.

Disable Server Manager Autostart in Windows Server 2012 R2 - Step 10


Vladimir Mikhalev

Docker Captain  ·  IBM Champion  ·  AWS Community Builder

The Verdict — production-tested analysis on YouTube.

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

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 test Stellar Repair on a dirty-shutdown EDB file. The 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 · Guide to installing OTRS Community Edition on Ubuntu Server — configure PostgreSQL, Apache, and SSL with Let's Encrypt, and launch OTRS securely.

Random Posts

Random
  1. 1
    Install Exchange Server 2010
    SysAdmin & IT Pro · Step-by-step guide to install Exchange Server 2010 on Windows Server 2008 R2. Includes prerequisites, AD setup, and full installation walkthrough.
  2. 2
    Upgrade Spigot on Ubuntu Server with Multicraft
    SysAdmin & IT Pro · Learn how to upgrade Spigot on Ubuntu Server with Multicraft. Step-by-step tutorial for building the latest Spigot version and integrating it with Multicraft.
  3. 3
    Install Docker Engine and Docker Compose on Ubuntu Server
    DevOps & Cloud · Learn how to install Docker Engine and Docker Compose on Ubuntu Server. Follow a clear, step-by-step guide to get Docker running quickly and securely.
  4. 4
    Export Drivers Using Windows PowerShell
    SysAdmin & IT Pro · Learn how to export Windows drivers using PowerShell with the Export-WindowsDriver cmdlet. Step-by-step guide for automation and IT pros.
Disable Server Manager Autostart in Windows Server 2012 R2
https://heyvaldemar.com/disable-server-manager-autostart-in-windows-server-2012-r2/
Author
Vladimir Mikhalev
Published
2015-10-23
License
CC BY-NC-SA 4.0