Answers for "windows command line show services"

2

windows services list

// Commands for powershell
//lists all services and their current state
Get-Service

//List stopped services
Get-Service | Where-Object {$_.Status -eq "Stopped"}
Posted by: Guest on July-18-2021
1

get windows service name cmd

sc queryex type= service state= all | find /i "keyword"
Posted by: Guest on July-16-2020

Code answers related to "windows command line show services"

Browse Popular Code Answers by Language