Site icon Winhelponline

Task Scheduler Service Grayed Out in Services MMC

When you open the Services management console (services.msc), the Task Scheduler service may be in a disabled state. In the Task Scheduler properties page, all the options may be grayed out, and the service Startup type cannot be changed.

This article tells you how to configure the Task Scheduler service using a couple of methods.

Task Scheduler Service Grayed Out in Services MMC

Method 1: Change service settings using the Registry Editor

Note: The steps in this method won’t enable the grayed out buttons in the Task Scheduler service properties dialog. For that, you’ll need to use Method 2 below. Or, you need to modify the service permissions. It’s illustrated in the article How to View and Modify Service Permissions in Windows.

Task Scheduler service is not configurable using the GUI. To reset the Startup type of the Task Scheduler service to the default setting (which is Automatic), download the file scheduler.reg and save it to your Desktop. Then right-click on the file and choose Merge. This REG file can be used in Windows Vista, 7, 8, and Windows 10.

The Task Scheduler service settings are stored in the registry key:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Schedule

The DWORD value named Start determines how the service is started. The valid values are:

The above REG file resets it to 2, which is the Windows-default setting.

Using the reg.exe console tool

Alternately, you can run the following command from an admin Command Prompt window to set Task Scheduler startup type to Automatic:

reg add HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Schedule /v Start /t reg_dword /d 2 /f

Method 2: Use the LocalSystem account to configure the service

To configure the Task Scheduler service, stop, or restart it via the Services console or command-line, you may need to use the LocalSystem account.

  1. Start Command Prompt (cmd.exe) under SYSTEM (“LocalSystem”) account. For more information, check out the article How to Run a Program as SYSTEM (LocalSystem)
  2. Run the following command from the Command Prompt window:
    mmc.exe services.msc


    This starts the MMC under the SYSTEM account.

    As you see, the Start button and the Startup type list boxes are enabled when you access the Services MMC using the LocalSystem account.

Exit mobile version