A question on the forum asked why a object is displayed in a table if it has 4 or fewer properties and as a list if it has more than 4 properties:
PS> [PSCustomObject]@{P1=1; P2=2; P3=3; P4=4}
P1 P2 P3 P4
— — — —
1 2 3 4
PS> [PSCustomObject… Read the full text.