WiseCleaner Think Tank
Encounter difficult computer problems?
All about maintenance and optimization of your Windows System.
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.
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.
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):


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):
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

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:
net start "ServiceName"
net stop "ServiceName"
sc config "ServiceName" start= auto
sc config "ServiceName" start= disabled
In the command, change "ServiceName" to the actual name of the service. 
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-Service -Name "ServiceName"
Stop-Service -Name "ServiceName"
Set-Service -Name "ServiceName" -Status running -StartupType automatic
Set-Service -Name "ServiceName" -Status stopped -StartupType disabled
In the command, change "ServiceName" to the actual name of the service.
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.
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