If you are using Exchange and you want to see the list of folder sizes a mailbox has, you can open up Exchange Management Shell (EMS) and run the command below:
Get-MailboxFolderStatistics mailboxalias | Select Name,@{N="FolderSize (MB)";E={$_.FolderSize.ToMB()}},ItemsinFolder
Where:
- mailboxalias = The alias of the mailbox you want to get the folder sizes of
- Name = Name of the folder
- @{N=”FolderSize (MB)”;E={$_.FolderSize.ToMB()}} = Converts the folder size into MB
- ItemsinFolder = The number of items in each folder
Comments & Questions
If you have any questions or comments on this guide, please feel free to leave us a message below using our comments system.
Feedback is critical to our site so please, if this has helped you out, give the article a star rating above, it only takes one click! Thank You!
Visitor Rating: 5 Stars