Answers for "list services in windows"

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

Code answers related to "list services in windows"

Browse Popular Code Answers by Language