where-object
Verified for current stable LTS
Where Object Command: List Stopped Services
Use for list stopped services with Where Object. Exact CLI syntax to list stopped services using Where Object.
When to use this: Use for list stopped services with Where Object.
Command Syntax
Get-Service | Where-Object {$_.Status -eq "Stopped"} Get-Service | Where-Object `{$env:_.Status -eq "Stopped"`} Live Command Builder
Final Command
Get-Service | Where-Object {$_.Status -eq "Stopped"} Command Breakdown
-eq- Command Option
- Tool-specific option used by this command invocation.
FAQ
Purpose: Exact syntax to list stopped services using Where Object.
Test path: Replace placeholders and run destructive commands in a disposable workspace first.
Flag behavior: Tool version, platform, and shell can change behavior.
Improve This Command
Suggest a correction, safer default, or version-specific note for this entry.
Related Operations
Where Object Command: Filter Aliases By Name
Get-Alias | Where-Object -<Property> <Name> -<eq> <name> Where Object Command: Filter Modules By Name Conditions Get-Module -ListAvailable | Where-Object { $_.Name -NotLike "Microsoft*" -And $_.Name -NotLike "PS*" } Seq Command: Print All Numbers With Equal Width seq -w <5 3 20> Tsv Filter Command: Filter Lines Equal Number tsv-filter -H --eq <field_name>:<number> <path/to/tsv_file> Tsv Filter Command: Filter Lines Two Conditions tsv-filter --eq <column_number1>:<number> --str-eq <column_number2>:<string> <path/to/tsv_file>