Link to home
Start Free TrialLog in
Avatar of willlandymore
willlandymoreFlag for United States of America

asked on

view mailbox size for all Exchange uesrs, Exchange 2010

I want to run a command from the Exchange shell that will display all mailboxes in a DB from highest to lowest....

I've been trying stuff like:

Get-MailboxStatistics | ft DisplayName, TotalItemSize, ItemCount

but it prompts for an identity of a mailbox when I run this. Does anyone know how I can get all of the mailboxes at one time and spit it out to a file?
Avatar of Gavincr001
Gavincr001
Flag of United States of America image

Using powershell:

Get-MailboxStatistics | ft DisplayName,TotalItemSize,ItemCount
ignore that sorry, didnt read the whole question ;(
ASKER CERTIFIED SOLUTION
Avatar of willlandymore
willlandymore
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of willlandymore

ASKER

worked
Awesome!