How to Start, Stop, and Restart Services in Windows 11
Windows services are background programs that run important tasks to keep your PC working right, from connecting to the internet to printing documents.
You can start, stop, or restart any of these services using the built-in Services app in Windows 11 when a feature stops working or your computer acts up.
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 responds too slowly or lacks proper permissions. Management tasks require an account equipped with administrative privileges.
Pro Tip: Using the Command Line
sc query followed by the service name. Determining if a service runs or stays stopped happens instantly without launching extra windows.Option 1Using the Services Console
1. Click the Start button , type Command Prompt, right-click the result, and select Run as administrator.
2. To stop a service, type net stop "Service Name" and press Enter, or use sc stop "Service Name".
- Click the Start button, type "Services," and press Enter.
- Find the service you want to manage.
- Right-click the service name and select Start, Stop, or Restart.

Option 2Using Task Manager
- Click the Start button, type Command Prompt, right-click the result, and select Run as administrator.
- To start a service, type
net start "Service Name"and press Enter, or usesc start "Service Name".
- Press Ctrl + Shift + Esc to open Task Manager.
- Click the Services tab.
- Right-click the service and choose Start, Stop, or Restart.

Option 3Using the Command Prompt (Admin)
Requires Administrator Privileges.
- Click the Start button, type Command Prompt, right-click the result, and select Run as administrator.
- To restart a service, type
net stop "Service Name", press Enter, then typenet start "Service Name"and press Enter. - Alternatively, use
sc stop "Service Name"followed by Enter, thensc start "Service Name"followed by Enter.
- Right-click the Start button and select Terminal (Admin).
- To start a service, type the following and press Enter:
net start service nameornet start "display name" - To stop a service, type the following and press Enter:
net stop service nameornet stop "display name"


Option 4Using the SC Command
Requires Administrator Privileges.
- Click the Start button, type Command Prompt, right-click the result, and select Run as administrator.
- To disable a service, type
sc config "Service Name" start= disabledand press Enter. - To re-enable it, type
sc config "Service Name" start= autoand press Enter.
- Open Terminal (Admin).
- To see the status of all services, type:
sc queryex state=all type=service - To start a service, type:
sc start service name - To stop a service, type:
sc stop service name



Option 5Using PowerShell
PowerShell (a task automation and configuration management framework) offers a fast way to manage Windows services through the command line. Opening Terminal as an administrator and selecting PowerShell unlocks the ability to execute commands like 'Get-Service' for viewing all items or 'Start-Service -Name "service name"' for launching specific targets.
- Open Terminal as an administrator and select PowerShell.
- Type
Get-Serviceto view all services. - To start a service, type
Start-Service -Name "service name"and press Enter. - 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.
- Open Terminal (Admin) and select PowerShell.
- To see all services, type:
Get-Service | Format-Table -Auto - To start a service, type:
Start-Service -Name "service name"orStart-Service -DisplayName "display name" - To stop a service, type:
Stop-Service -Name "service name"orStop-Service -DisplayName "display name" - To restart a service, type:
Restart-Service -Force -Name "service name"orRestart-Service -Force -DisplayName "display name"



Summary
Managing Windows services helps resolve broken features and optimizes overall system performance. Visual control lives inside the Services console, while the command line delivers much faster execution. Administrative privileges remain mandatory for these modifications, requiring caution when stopping critical system functions.
What should I do if a service is stuck on 'Stopping'?
Stuck services require opening Task Manager, switching to the Details tab, locating the associated process, and clicking End Task. Rebooting the machine serves as the most effective method for clearing hung processes and restoring normal operations if that fails.
Can I restart Windows services without administrative privileges?
Core system components require administrative rights for any modifications. Attempting changes without these privileges triggers an 'Access Denied' error, protecting the operating system from unauthorized tampering by standard user accounts.
Was this guide helpful?
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.
No comments yet — be the first to share your thoughts!