-
-
Save ekmixon/f8b192bf3c5ae0ba0e66a6a5a77f0d5d to your computer and use it in GitHub Desktop.
PS-Filtering.ps1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Basic Syntax example | |
Get-Service | Where-Object Status -eq Running | |
# Advanced Syntax example | |
Get-Service | Where-Object {$PSItem.Status -eq 'Running' -and $PSItem.StartType -eq 'Automatic'} | |
# Same as above | |
Get-Service | Where-Object {$_.Status -eq 'Running' -and $_.StartType -eq 'Automatic'} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment