Format-Table not displaying all properties with PowerShell 5 Format-Table not displaying all properties with PowerShell 5 powershell powershell

Format-Table not displaying all properties with PowerShell 5


PowerShell 5 had a change to how columns are auto-sized by default. It cannot fit the additional columns on the page. Adding -AutoSize will not resolve the issue.

You could increase the side of the window.

Additionally, @PetSerAl's following suggestion will let you specify the width of the columns but you loose auto-sizing.

Get-ChildItem | Format-Table -Property @{expression='ps*'; width=10}