Sometimes we like to know how many mailboxes are on a server or in a database, back in the day we used to count the mailboxes in Exchange 2003. Well I did, I was greener then!
So if you have Exchange 2007/2010, and if you don't why not?, how do you do this with the Powershell.
Well its simple, open the EMS and use
Get-Mailbox | Measure-Object
If you want to do this in a database then use
Get-Mailbox -Database databasename| Measure-Object
Its that simple with EMS!
No comments:
Post a Comment