PowerShell - Cmdlets and Pipeline
Which of the following is the correct syntax to pipe the output of
Get-Process to Sort-Object by process name?Get-Process to Sort-Object by process name?-Property parameter to specify the sorting property.Get-Process output and uses -Property Name. Get-Process Sort-Object Name misses the pipeline operator. Get-Process Sort-Object | Name has wrong order. Get-Process -Sort Name uses invalid parameter.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions