Filter Mailbox database by size in Exchange 2007
How do I filter the mailbox database to determine mailbox size, i.e. users who are near their limit.
February 17th, 2010 1:17pm

Hi,Please try to use the cmdlet likeGet-Mailbox -Database "Mailbox Database" -retrieves a summary list of all mailboxes in the mailbox database named Mailbox Database. Get-Mailbox -Server EXCH01 -retrieves a summary list of all mailboxes on the server named EXCH01. Get-MailboxStatistics -Database MailboxDatabase -retrieves the mailbox statistics for all mailboxes in the mailbox database named MailboxDatabase. Get-MailboxStatistics -Server EXCH01 -retrieves the mailbox statistics for all mailboxes on the server named EXCH01find it here http://www.windowsadmin.info/viewtopic.php?f=20&t=116 Regards from www.windowsadmin.info
Free Windows Admin Tool Kit Click here and download it now
February 17th, 2010 2:13pm

Hi,users who are near their limitTry this cmdlet:Get-MailboxStatistics | Where {"IssueWarning","ProhibitSend","MailboxDisabled" -Contains $_.StorageLimitStatus} | Format-Table DisplayName,TotalItemSize,StorageLimitStatusMore information:http://technet.microsoft.com/en-us/library/bb738403(EXCHG.80).aspxFrank Wang
February 19th, 2010 5:56am

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

Other recent topics Other recent topics