Chapter 6 | Play with Pipeline
Selecting Output Culumns Select-Object

Sorting Output by Column Value Sort-Object

Filtering Output Rows Where-Object
- The condition statement(s) can be written in script block within curly braces i.e.
Where-object {ConditionalStatement}
- Objects which are being transferred through PipeLine from one CmdLet to other is denoted as
$_
- The property of these objects can be accessed via Dot
.
Symbol i.e. $_.Name

Looping through Output Rows ForEach-Object
