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 from Command Line
Let’s see the following guide to start, stop and restart services in windows 11 / 10 from command line”
- Start Service in Windows
- Stop Service in Windows
- ReStart Service in Windows
Start Service in Windows
Use the following command on command line to start service in windows:
sc start ServiceName
Stop Service in Windows
Use the following command on command line to stop service in windows:
sc stop ServiceName
ReStart Service in Windows
Use the following command on command line to restart 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.