What is the syntax to include several values in an -eq command:
This works but i think there is a way to save some typing:
Get-Service | where {($_.Status -eq "Stopped") -OR ($_.Status -eq "Running")}
Think code should look like but i don't remember exactly the syntax:
Get-Service | where {($_.Status -eq "Stopped"|"Running"|"...")}
"Stopped","Running" -eq $_.Statuswould work, but only since none of the enumeration values are0. – Јοеу Apr 1 '11 at 13:47