Skip to content
Follow
Windows 🟡 Intermediate

How to Start, Stop, and Restart Services in Windows 11

Richard
Written by
Richard
May 10, 2026 Updated Jul 12, 2026 4 min read
Close-up terminal executing service management commands
Close-up terminal executing service management commands

Windows 11 services are background programs that keep your PC running smoothly.

These invisible helpers manage essential functions, from connecting to the internet to making sure your printer works. You might need to start, stop, or restart a service if a feature isn’t working or if your computer feels slow.

For example, restarting the “Print Spooler” service often fixes printing problems. Understanding how these services work can help you troubleshoot issues and keep Windows 11 performing its best.

⚡ Quick Answer

You can start, stop, and restart Windows 11 services using the Services console or command prompt. Open Services, find the service, then right-click and select Start, Stop, or Restart. Alternatively, use command prompt commands like “net start service name”.

Troubleshooting Service Failures

An ‘Error 1053’ or ‘Access Denied’ message indicates a Windows service is too slow to respond or you don’t have the correct permissions. Always use an account with administrative privileges to manage Windows services.

Pro Tip: Using the Command Line

💡Pro Tip
Using the Command Line for quick status checks. Open Command Prompt as an administrator and type sc query followed by the service name. This shows you exactly if a service is running or stopped without opening any windows.
📝Note
You must be logged in as an administrator to perform these actions.

Option 1Using the Services Console

  1. Open Command Prompt as an administrator.
  2. To stop a service, type net stop "Service Name" and press Enter, or use sc stop "Service Name".
  1. Click the Start button, type "Services," and press Enter.
  2. Find the service you want to manage.
  3. Right-click the service name and select Start, Stop, or Restart.
Windows 11 Services window showing options to start, stop, and restart
Windows 11 Services window showing options to start, stop, and restart

Option 2Using Task Manager

  1. Open Command Prompt as an administrator.
  2. To start a service, type net start "Service Name" and press Enter, or use sc start "Service Name".
  1. Press Ctrl + Shift + Esc to open Task Manager.
  2. Click the Services tab.
  3. Right-click the service and choose Start, Stop, or Restart.
Managing background services using the Windows 11 Task Manager interface
Managing background services using the Windows 11 Task Manager interface

Option 3Using the Command Prompt (Admin)

Requires Administrator Privileges.

  1. Open Command Prompt as an administrator.
  2. To restart a service, type net stop "Service Name", press Enter, then type net start "Service Name" and press Enter.
  3. Alternatively, use sc stop "Service Name" followed by Enter, then sc start "Service Name" followed by Enter.
  1. Right-click the Start button and select Terminal (Admin).
  2. To start a service, type the following and press Enter: net start service name or net start "display name"
  3. To stop a service, type the following and press Enter: net stop service name or net stop "display name"
Command Prompt terminal window showing command to start a Windows service
Command Prompt terminal window showing command to start a Windows service
Command Prompt terminal window showing command to stop a Windows service
Command Prompt terminal window showing command to stop a Windows service

Option 4Using the SC Command

Requires Administrator Privileges.

  1. Open Command Prompt as an administrator.
  2. To disable a service, type sc config "Service Name" start= disabled and press Enter.
  3. To re-enable it, type sc config "Service Name" start= auto and press Enter.
  1. Open Terminal (Admin).
  2. To see the status of all services, type: sc queryex state=all type=service
  3. To start a service, type: sc start service name
  4. To stop a service, type: sc stop service name
Listing all running Windows services using the Command Prompt sc query
Listing all running Windows services using the Command Prompt sc query
Stopping a Windows service via Command Prompt with administrative privileges
Stopping a Windows service via Command Prompt with administrative privileges
Updated Command Prompt interface for stopping Windows services as administrator
Updated Command Prompt interface for stopping Windows services as administrator

Option 5Using PowerShell

You can manage Windows services using PowerShell, a command-line shell and scripting language that lets you start, stop, and restart services quickly. To use it, open Terminal as an administrator and select PowerShell. You can then type commands like 'Get-Service' to see all services or 'Start-Service -Name "service name"' to start a specific one.

  1. Open Terminal as an administrator and select PowerShell.
  2. Type Get-Service to view all services.
  3. To start a service, type Start-Service -Name "service name" and press Enter.

4. To stop a service, type Stop-Service -Name "service name" and press Enter.

5. To restart a service, type Restart-Service -Name "service name" and press Enter.

  1. Open Terminal (Admin) and select PowerShell.
  2. To see all services, type: Get-Service | Format-Table -Auto
  3. To start a service, type: Start-Service -Name "service name" or Start-Service -DisplayName "display name"
  4. To stop a service, type: Stop-Service -Name "service name" or Stop-Service -DisplayName "display name"
  5. To restart a service, type: Restart-Service -Force -Name "service name" or Restart-Service -Force -DisplayName "display name"
Viewing a list of Windows services using PowerShell commands
Viewing a list of Windows services using PowerShell commands
Stopping a specific Windows service using PowerShell command line interface
Stopping a specific Windows service using PowerShell command line interface
Starting a Windows service using PowerShell command line interface
Starting a Windows service using PowerShell command line interface

Summary

Managing Windows services helps you fix broken features and optimize your system. You can use the Services console for a visual interface or the command line for faster control. Always remember that administrative privileges are required for these changes, and be cautious when stopping system-critical services.

What should I do if a service is stuck on 'Stopping'?

If a service is stuck, open Task Manager, go to the Details tab, find the process associated with the service, and select End Task. If that fails, a simple system restart is the most effective way to clear the hung process and restore normal operation.

Can I restart Windows services without administrative privileges?

No, you can't. Windows requires administrative privileges to modify services because they are core system components. Attempting to stop or start them without these rights will result in an 'Access Denied' error, protecting your system from unauthorized changes by standard user accounts.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Delete Services in Windows 11
Windows How to Delete Services in Windows 11
Guide to Managing Columns in Windows 11 Task Manager
Windows Guide to Managing Columns in Windows 11 Task Manager
How to Enable End Task in Windows 11 Taskbar
Windows How to Enable End Task in Windows 11 Taskbar
How to Install TeamViewer via Command Line on Ubuntu
Ubuntu Linux How to Install TeamViewer via Command Line on Ubuntu

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *