WiseCleaner Think Tank

Encounter difficult computer problems?
All about maintenance and optimization of your Windows System.

Home > Think Tank > How to Manage System Services in Windows 11

How to Manage System Services in Windows 11

Apr 13, 2026

System services in Windows 11 are background processes that keep your system running smoothly—handling everything from networking and updates to security and device management. Knowing how to manage these services can help improve performance, troubleshoot issues, or customize your system behavior.

Manage Services Through Task Manager

The Task Manager provides a quick way to manage services. It is best suited for restarting a stuck service rather than permanently disabling one.

1. Press Ctrl + Shift + Esc to open Task Manager.

2. Click the Services tab on the left sidebar. (If you see a simple view, click "More details" at the bottom first.) You will see a list of all services with their PID, status (Running or Stopped), and description.

3. Locate the service you want to manage. Right-click it and choose Start, Stop, or Restart from the context menu.
Manage Services Through Task Manager

Manage Services Through the Services App

The Services offers full control over services, including startup settings.

1. Press Win + R, type services.msc, and press Enter

2. To Start or Stop a service (temporary):

  • Locate the service, right-click it and select Start or Stop.
Manage Services Through the Services App
  • Alternatively, double-click the service to open its Properties window, then click Start or Stop.
Manage Services Through the Services App

3. To Restart a service:

Right-click the service and select Restart (this performs a Stop followed immediately by a Start).

4. To Disable or Enable a service (permanent):

  • Double-click the service to open its Properties window.
  • Click the dropdown next to Startup type:

Automatic – Starts at boot 

Automatic (Delayed Start) – Starts the service automatically but after the system loads.

Manual – Starts when needed 

Disabled – Prevents it from running

5. Click Apply, then OK.
To Disable or Enable a service (permanent):

Manage Services Through Command Prompt

The Command Prompt allows you to manage services using commands.

1. Type the Command Prompt from the Search box, right-click the top result, and select the Run as administrator option.

2. Use the following commands:

  • Start a service:

net start "ServiceName"

  • Stop a service:

net stop "ServiceName"

  • Enable a service:

sc config "ServiceName" start= auto

  • Disable a service:

sc config "ServiceName" start= disabled

In the command, change "ServiceName" to the actual name of the service. 

Manage Services Through PowerShell

PowerShell provides a more powerful and flexible way to manage services.

1. Right-click the Start button and select Terminal (Admin) or Windows PowerShell (Admin).

2. Use the following commands:

  • Start a service:

Start-Service -Name "ServiceName"

  • Stop a service:

Stop-Service -Name "ServiceName"

  • Enable a service:

Set-Service -Name "ServiceName" -Status running -StartupType automatic

  • Disable a service:

Set-Service -Name "ServiceName" -Status stopped -StartupType disabled

In the command, change "ServiceName" to the actual name of the service. 

Conclusion

Managing system services in Windows 11 gives you greater control over how your system operates. Whether you use the Services app or command-line tools like PowerShell, understanding these methods can help you optimize performance and resolve issues more effectively.

Latest
How to Check SSD and HDD Temperatures on Windows 11How to Turn off Copilot Journeys in Microsoft EdgeHow to Repair a Disk Partition
Read more >>
Recommend
Understanding Windows Power Plans: Balanced, Battery Saver, High Performance, and Ultimate PerformanceHow to Pause Windows Update for 100 YearsShould I enable or disable Trim of SSD?
Read more >>
Hottest
How to Install a macOS in VMware Workstation PRO 17How to Enable Task Manager Option in Taskbar Menu on Windows 11How to Fix Office Application Error 0xc0000142
Read more >>

wisecleaner uses cookies to improve content and ensure you get the best experience on our website. Continue to browse our website agreeing to our privacy policy.

I Accept