Olá pessoal,
Hoje eu compartilho com vocês alguns comandos PowerShell bastante úteis para gerencia e suporte em ambientes com Exchange Server na rede.
Para obter informações sobre cada mailbox existente em todos os databases em um servidor Exchange, execute:
Get-MailboxStatistics
Para saber a quantidade exata de mailboxes criadas no Exchange Server execute, substituindo SERVIDOR, pelo nome do seu servidor:
Get-Mailbox -Server SERVIDOR | Measure-Object
Para identificar a quantidade de maiboxes criadas em cada database existente no Exchange, execute:
Get-Mailbox | Group-Object -Property:Database | Select-Object Name,Count | Sort-Object Name | Format-Table -Aut
Até a próxima!