Answers for "command to list services"

0

linux list services

$ systemctl list-units --type=service
Posted by: Guest on April-27-2021
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 "Shell/Bash"

Browse Popular Code Answers by Language