Get-OrganizationConfig | Ft OrganizationSummary
We see this information about the Exchange environment:
Some tidbits are revealed, but we can tell by the dots at the end there is more to be revealed. How can we show what is missing.
Let’s try this first to see if we can pull it with a variable:
$Test = Get-OrganizationConfig | Select OrganizationSummary $Test | Fl
We see this now, which is a bit better:
Since the last example did not work, let’s not store the property in a variable, but instead just do this:
(Get-OrganizationConfig).OrganizationSummary
Which, as we illustrate, uses the same property, without the variable as a middle man and this produces much better results:
To eliminate some of the extra columns, and just the item and the value we can just pipe the data to an FT, selecting those two values like so:
(Get-OrganizationConfig).OrganizationSummary | Ft Key,Value
And now we have a usable table:
It reminded me of the summary screen that is present in Exchange 2010:
Not sure how I ever missed this… think I need to spend more time in PowerShell. /sarc
Caveat
One interesting note is that this does not exist in Exchange Online. The property is there, but it is empty. Well, that would have been cool….