February 2019
Intermediate to advanced
626 pages
15h 51m
English
Select-Object is most frequently used to limit the properties returned by a command. The command is extremely versatile as it enables you to do the following:
Get-Process | Select-Object -Property Name, Id
Get-Process | Select-Object -Property Name, *Memory
Get-Process | Select-Object -Property * -Exclude *Memory*
Get-ChildItem C:\ -Recurse | Select-Object -First 2
Get-ChildItem C:\ | Select-Object -Last 3
Get-ChildItem C:\ ...
Read now
Unlock full access