Here’s a few useful commands I regularly use in Powershell for Exchange management.
How can I list all users mailboxes on a given server?
Get-Mailbox –servername SERVER1
How can I list a users mailbox size?
Get-MailboxStatistics –identity “Wayne Small – SBSfaq.com” | select TotalItemSize
How can I list all users mailbox size on a given server?
This is a little more tricky – here’s a site that I grabbed a script from which did it very nicely.
Leave a Reply