Format-Table
1 | Get-Process | Format-Table -Property Name, Id, CPU |
Format-List
1 | Get-Service | Format-List -Property Name, Status, StartType |
Format-Wide
1 | Get-ChildItem | Format-Wide -Column 4 |
Out-GridView
1 | Get-Process | Out-GridView |
ConvertTo-Html
1 | Get-Service | Select-Object Name, Status, StartType | ConvertTo-Html |
ConvertTo-Csv
1 | Get-Process | Select-Object Name, Id, CPU | ConvertTo-Csv -NoTypeInformation |
Format-Custom
1 2 3 | Get-ChildItem | Format-Custom -View ` @{ Name= "Name" ; Expression={ $_ .Name} }, @{ Name= "Size" ; Expression={ $_ .Length} } |
Format-Table -AutoSize
1 | Get-ChildItem | Format-Table -AutoSize |
Out-File
1 | Get-Process | Out-File -FilePath C:\temp\processes.txt |
Out-Null
1 | Stop-Process -Name notepad | Out-Null |