Hello, scotty p and vbrad6841-
While vbrad6841 definitely gives a couple of ways that will return some data to the screen in tabular format, a PowerShell-y way to get this data would be to use the Select-Object cmdlet, and create a calculated property for the values that you desire. Like:
Get-Cluster | Get-View -Property Name,Summary |
Select-Object Name, @{n="NumHosts"; e={$_.Summary.NumHosts}}
The added value here is that the data is returned as objects, which we know are part of what make PowerShell endlessly useful. So, with these object, you could do things like Measure-Object to get sums, or Export-Csv the objects to put them into a CSV, or feed them to ConvertTo-Html to make a report, or <so on>. Just wanted to add that tidbit about how to get from code that makes tables in a console window to code that makes objects with which to do <all the things>.