Various Exchange Powershell commands.

how many mailboxes in your exchange environment by Server.


By Server
(get-mailbox -server SERVERNAME -resultsize unlimited -ignoredefaultscope).count

All mailboxes
(get-mailbox  -resultsize unlimited -ignoredefaultscope).count

By Database
(get-mailbox -database  DBNAME -resultsize unlimited -ignoredefaultscope).count


Script for item count

https://blogs.technet.microsoft.com/exchange/2009/12/07/finding-high-item-count-folders-using-the-exchange-management-shell/

Comments

Post a Comment

Popular Posts