Scripting >> Powershell >> Syntax >> line breaks - comments - merging lines - piping output to another command

Line break with back tick :- Get-Process | Select-Object ' name, ID Comments with # :- # code not executed Merging lines with ; :- $a=1;$b=3;$c=9 Piping with | :- Get-Service | Get-Member