Follow
Windows 🟡 Intermediate

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

Richard
Written by
Richard
May 10, 2026 3 min read
How to Start, Stop, and Restart Services in Windows 11

Windows runs many programs in the background to keep your computer working. These are called services. They handle things like your internet connection, printing, and system updates. While Windows manages these automatically, you may sometimes need to start, stop, or restart them yourself.

Why do this? You might need to restart a service if a feature stops working correctly, or stop one that is causing your computer to run slowly.

What happens when done? The specific background process will change its state, either turning on, turning off, or resetting to help fix an issue.

Understanding Service Startup Types

Every service has a startup type that tells Windows how to behave when you turn on your PC:

  • Automatic: The service starts as soon as Windows boots.
  • Manual: The service only starts when a program or user asks for it.
  • Disabled: The service will not run under any circumstances.

Troubleshooting Service Failures

If you see an Error 1053 or Access Denied message, it usually means the service is taking too long to respond or you do not have the right permissions. Always ensure you are using an account with administrative privileges.

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 One: Using the Services Console

  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.

Option Two: Using Task Manager

  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.

Option Three: Using the Command Prompt (Admin)

Requires Administrator Privileges.

  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"

Option Four: Using the SC Command

Requires Administrator Privileges.

  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

Option Five: Using PowerShell

Requires Administrator Privileges.

  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"

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 cannot. 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 Customize Outlook Calendar Alerts on Windows 11
Windows How to Customize Outlook Calendar Alerts on Windows 11
How to Speed Up File Transfers in Windows 11 with Robocopy
Windows How to Speed Up File Transfers in Windows 11 with Robocopy
Enable High Fidelity Sound in Microsoft Teams
Windows Enable High Fidelity Sound in Microsoft Teams
How to Turn On or Off Mobile Hotspot Power Saving in Windows 11
Windows How to Turn On or Off Mobile Hotspot Power Saving in Windows 11

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

Leave a Comment

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