Start, stop and restart services on the windows 11 / 10 command line; Through this tutorial, we will learn how to start, stop and restart services in windows 11 / 10 from the command line.
A service is used for continuous running processes on any operating system. Generally, it is used for task automation, listening for specific events on a system.
How to Start, Stop, and Restart Services in Windows 11|10 using CMD
Using the following steps, you can start, stop and restart services in windows 11|10 using cmd or command prompt:
- Start Services in Windows
- Stop Services in Windows
- Restart Services in Windows
Start Services in Windows
You can use sc start servicename command to start the service in Windows:
sc start ServiceName
Stop Services in Windows
You can use sc stop servicename command to stop the service in Windows:
sc stop ServiceName
Restart Services in Windows
You can use sc restart servicename command to restart the service in Windows:
sc restart ServiceName
Conclusion
Through this tutorial, we have learned how to start, stop and restart services in windows 11 / 10 using the command line.