Today, I’ll show you another classic PowerShell Code for Exchange Server that will let you search for users with a mailbox size of X and above.
I came across the need to do this when I had to rebalance mailboxes on Exchange Server and wanted to know which users have mailboxes over 5GB.
The code below. Will show you all the mailboxes with total size of 5GB and above on a specific database.
get-mailbox -database mbx01 | Get-MailboxStatistics | where {$_.TotalItemSize -ge 5GB}
To search all the mailboxes In the organization use the code below:
get-mailbox -resultsize unlimited | Get-MailboxStatistics | where {$_.TotalItemSize -ge 5GB}
Got a project that needs expert IT support?
From Linux and Microsoft Server to VMware, networking, and more, our team at CR Tech is here to help.
Get personalized support today and ensure your systems are running at peak performance or make sure that your project turns out to be a successful one!
CONTACT US NOW