[Exchange] Check Mailbox Usage, Mail Count in Exchange 2010

2020. 2. 6. 17:51IT/Exchange

To Check Mailbox Usage and Mail Count in Exchange 2010
Exchange 2010 사서함 사용량 확인하기, 메일 수 확인하기

 

I needed to check Mailbox Usage while examining the transition from an Exchange 2010 on-premises server to an online mail server. 
I was googling to find how to check the Mailbox Usage, and finally I found that how to check the Mailbox Usage, Mail Counts and etc. And  I wrote this content that shows how to you get Mailbox Usage and Mail Counts on an Exchange 2010 server include how to sort the collected information.

 

Command in the Exchange Management Shell
> Get-Mailbox | Get-MailboxStatistics | Select DisplayName, ItemCount, TotalItemSize

# Sort by Mailbox Usage
> Get-Mailbox | Get-MailboxStatistics | Select DisplayName, ItemCount, TotalItemSize | Sort-Object TotalItemSize -Descending
# Sort by Mail Count
> Get-Mailbox | Get-MailboxStatistics | Select DisplayName, ItemCount, TotalItemSize | Sort-Object ItemCount -Descending

 

 

 

'IT > Exchange' 카테고리의 다른 글

[Exchange] Exchange 2010 SP3 RU 30 설치 시, Powershell 오류  (0) 2020.03.17