Mailbox Size ReportDescription Script displays table with mailbox size statistics. Usage Run from Exchange Management Shell. Sample Script get-mailbox | get-mailboxstatistics | select-object DisplayName,TotalItemSize,StorageLimitStatus,LastLogonTime
Disclaimer: The sample scripts are meant to serve as examples and may need modifications before they will work in your environment. The authors of the script are not responsible for any negative outcome that may result from using them. Another Sample Get-MailboxStatistics -Database "mailbox database" | Sort -Property DisplayName | ft DisplayName, @{expression={$_.totalitemsize.value.ToMB()};label="Mailbox Size(MB)"}, itemcount, lastlogontime, lastlogofftime,lastloggedonuseraccount
This example get mailboxes from a mailbox database named "mailbox database", Output is sortet on DisplayName and the mailboxsize is displayed in MB |