19. Introduction to the Pipeline What is a Pipeline? 👉 A pipeline passes the output of one command as input to another command Command1 | Command2 Simple Meaning 👉 Pipeline = “Take result from one command and send it to the next command” Basic Example >>> Get-Process | Sort-Object CPU What happens: Get-Process → gets all processes Output goes to Sort-Object Processes sorted by CPU Another Example >>> Get-Service | Where-Object {$_.Status -eq "Running"} Select Specific Data >>> Get-Process | Select-Object Name, Id PS C:\Windows\System32> Get-Process | Get-Member TypeName: System.Diagnostics.Process Name MemberType Definition ---- ---------- ---------- Handles ...