PowerShell - Cmdlets and Pipeline
What will be the output of this command?
Get-Process | Where-Object { $_.Handles -gt 1000 } | Select-Object -First 3Get-Process | Where-Object { $_.Handles -gt 1000 } | Select-Object -First 3Get-Process outputs all processes, Where-Object filters those with handles > 1000, then Select-Object -First 3 picks the first 3.Select-Object, which returns the first 3 matching processes.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions