get users with mailboxes grater than 1 GB in size
i have asked my users to enable archiving on their outlook so the sizes of mailboxes on the server will reduce no to monitor this - is there a way to tun a cmdlet to show me ONLY the users with mailboxes larger than a specific size ? 1 GB or 512 MB for example
September 4th, 2012 2:55am

You can use the below cmd let: Get-Mailbox -resultsize unlimited | Get-MailboxStatistics | where {$_.TotalItemSize.Value.ToMB() -lt 512}
Free Windows Admin Tool Kit Click here and download it now
September 4th, 2012 7:08am

In addition, you can also try this cmdlet. Get-MailboxStatistics -Server <ServerIdParameter> | Where {$_.TotalItemSize -Gt 1GB} | Sort-Object -Property TotalItemSize -Descending | Format-Table DisplayName, TotalItemSize Hope helps. Noya Lau TechNet Community Support
September 6th, 2012 11:17pm

thank you so much this is what i was looking for
Free Windows Admin Tool Kit Click here and download it now
September 8th, 2012 3:25am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics