From the Exchange Management Shell (PowerShell Command Line):
To Get Mailbox List With Size (Sorted by mailbox size):
Get-MailboxStatistics |sort $_.TotalItemSize |FT DisplayName,ItemCount,TotalItemSize
To Get Mailbox List With Size (Sorted by Mailbox Size, Only List Mailboxes Over 1GB in Size)
Get-MailboxStatistics |where {$_.TotalItemSize -gt -ne 1000mb} | sort $_.TotalItemSize |FT DisplayName,ItemCount,TotalItemSize
To Get Mailbox List With Size (Sorted by Mailbox Size, Only List Mailboxes Over 5GB in Size, Saved to a Text File on C:\)
Get-MailboxStatistics |where {$_.TotalItemSize -gt 1000MB} | sort $_.TotalItemSize |FT DisplayName,ItemCount,TotalItemSize >C:\MailboxStats.txt
If you need a GUI (sometime you do), check out PowerGUI which redirects PowerShell Outputs to a GUI like interface.
'IT 관련 이야기 > SharePoint ' 카테고리의 다른 글
OWA 개인 정보 보호 기능 해제.... (0) | 2008.10.16 |
---|---|
Exchange 2007 메모리 문제 에 관한 설정 (0) | 2008.09.24 |
MOSS 차단된 파일 형식 풀어주기 (0) | 2008.09.04 |
OCS Virtual Labs on Technet 링크 (0) | 2008.08.07 |
Sharepoint Formula 사용법 (0) | 2008.08.04 |