Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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"}
 
PREVIOUS NEXT
Tagged: #windows #services #list
ADD COMMENT
Topic
Name
8+4 =