If you need to display a lot of information in as little room as possible, you should use Format-List with -Column:
Get-Service | Format-Wide -Column 5
This will work well whenever you want to display only one property per result.
If you need to display a lot of information in as little room as possible, you should use Format-List with -Column:
This will work well whenever you want to display only one property per result.