Exchange Server – Get Mailbox Folder Sizes

5d05eb33135798a962e3199db1fa4a4c

Last updated on April 1st, 2023 at 08:40 pm

Read Time:32 Second

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.

Click to rate this post!
[Total: 0 Average: 0]

Free Subscription

If you want to be notified when we post more quality guides like this one, sign up to our free subscription service and you will receive an email when a new post is live.

Join 441 other subscribers.

No need to worry, we will not be filling your inbox with spam and you can unsubscribe anytime you like.


One thought on “Exchange Server – Get Mailbox Folder Sizes

Leave us a message...

This site uses Akismet to reduce spam. Learn how your comment data is processed.