Quantcast
Viewing all articles
Browse latest Browse all 21

Weekly Exchange PowerShell Tip: Export Mailbox folder sizes

​To export a users mailbox folder sizes to a text file use the following command: Get-Mailbox -Identity testmailbox | Get-MailboxFolderStatistics | Select Identity,FolderPath,FolderSize,ItemsInFolder | Sort-Object ItemsInFolder | fl | out-File C:\Temp\DMayer-Mbox.txt  

Viewing all articles
Browse latest Browse all 21

Trending Articles