One, view windows Service
Press and hold the key combination "Windows+r" and enter Services.msc to open the Windows Services window
Second, use the net command
NET command-line tool is very powerful, including management network environment, services, users and other important management functions, using this General command to start and stop services.
1, start the service
net start Service-name
2, Stop the service
net stop Service-name
Third, use SC command
SC is a command-line program for communicating with service controllers and services, calling format: SC (server) [command] [service name] (option1) (option2) ...
The SC command is a dedicated command for the management Service, using the following example:
SC Delete service-namesc query Service-namesc stop service-namesc start service-Namesc Pause Service-name
sc config Service-name start= demand | Auto | Disable
Use/? parameters, see Help for using the SC command:
SC/?
Windows: Using DOS Command Management Service (services)