Get-ExchangeServer |
-status -Identity "+$hostname+"| export-clixml
$env:TEMP\exchange_pwrshell_output.xml |
Extracts the list of Microsoft Exchange hosts and role |
Get-ExchangeServer |
format-table -autosize -HideTableHeaders Name,Fqdn,IsMailboxServer |
Extracts the list of Microsoft Exchange hosts and role in table
format |
Get-MailboxServer |
format-list |
Extracts the list of Microsoft Exchange Mailbox servers. |
Get-ClusteredMailBoxServerStatus |
format-table -Property OperationalMachines |
Extracts information about Microsoft Exchange Mailbox
clusters. |
Get-ExchangeServer |
format-table -autosize -HideTableHeaders Name,Fqdn,IsHubTransportServer |
Extracts information on Microsoft Exchange Hub Transport
servers |
Get-StorageGroup |
-server "+$hname+" | select SystemFolderPath | Export-Csv out.csv -notype;cat
out.csv |
Extracts information about storage and exports it into a file. |
Get-MailboxDatabase |
| select LogFolderPath | format-table -autosize -hideTableHeaders;
Get-MailboxDatabase | select EdbFilePath| format-table -autosize
-hideTableHeaders;Get-MailboxDatabase | select TemporaryDataFolderPath| format-table
-autosize -hideTableHeaders |
Extracts information about the Microsoft Exchange Mailbox
database. |