Exchange Server – Get Mailbox Folder Sizes

5d05eb33135798a962e3199db1fa4a4c
5d05eb33135798a962e3199db1fa4a4c

Estimated reading time: 1 minutes

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]

Share this content:

Avatar for Andrew Armstrong

About Andrew Armstrong

Founder of TechyGeeksHome and Head Editor for over 15 years! IT expert in multiple areas for over 26 years. Sharing experience and knowledge whenever possible! Making IT Happen.

View all posts by Andrew Armstrong

One Comment on “Exchange Server – Get Mailbox Folder Sizes”

Leave a Reply

Your email address will not be published. Required fields are marked *