Output Formatting / Filtering
Format
Table
Get-Process | Format-Table -Property *Get-Process | Format-Table -Property ID,Name,RespondingGet-Process | Format-Table *Get-Process | ft -Wrap
Get-Command | Select-Object Name,Source | ft -Wrapget-process | Format-Table name,id, @{name='VM(MB)'; expression={$_.VM / 1MB -as [int]}}, @{name='PM(MB)'; expression={$_.PM / 1MB -as [int]}}Get-Process | Format-Table Name,ID,Responding -WrapList
Wide
GroupBy
Paging
Select-Object
Where-Object
Creating Custom Columns and List Entries
Last updated