PowerShell - Cmdlets and Pipeline
Identify the error in this pipeline command:
Get-Service | Where-Object Status -eq 'Running' | Select Name
Get-Service | Where-Object Status -eq 'Running' | Select Name
{ $_.Status -eq 'Running' }. The given command misses the braces.Select is an alias for Select-Object, so it's valid. Get-Service can be piped. Pipeline operator is present.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions