To list all the services which are currently running on a windows machine using the command prompt you can use the net start command.
![List-Services-Running]()
Step 1
Open a command prompt
Step 2
Type in the following:
net start
Click to rate this post!
[Total: 7 Average: 3.3]
You can also use:
sc queryex type= service state= all
state= all: Returns a list of all services
state= inactive: Returns a list of stopped services
To get a start of all running services only, do not include the ‘state’ field.
sc queryex type= service
Article on Technet:
https://technet.microsoft.com/en-us/library/dd228921(v=ws.11).aspx
P
Thanks Puneet. Much appreciated.