Managing Services
sc query
Lists all running services and provides additional information for each service.
sc query <Name>
Lists details about a specific service by name.
sc start <Name>
Start a service by name.
sc stop <Name>
Stop a service by name.
sc config <Name> start= disabled
Change settings of the service specified.
tasklist /svc
Provide a list of services running under each process on the system.
net start
List all running services.
wmic service list brief
List all services on the system using WMIC. Includes information such as: ExitCode, Name, ProcessID, StartMode, State, and Status.
Last updated