Home  |  Services  |  About Us  |  Contact  | 

 

Brad's TechTips - Exchange Server & Outlook

[<< Full list of Exchange Server & Outlook tips.]
 
 
Exchange Server 2007: Display a List of Mailboxes and Their Corresponding Sizes
 
Exchange 2007 does not have the same mailbox size view that Exchange 2003/2000 has. To create a listing of mailboxes and their respective sizes, run the following command in the Exchange Management Shell.  (The command should be run on a single line of text.)
 
get-mailboxstatistics -verbose | sort-object totalitemsize -descending |
format-table totalitemsize, displayname >c:\output.txt


The results will be created in a file at c:\output.txt.
 
 
 
 
 
CREDIT:
(Special thanks to Gabriele Tansini, Senior Field Engineer in Exchange Server at Microsoft, for providing the syntax for this command.)