Hi everyone,
I trying to count how many mailboxes there are in a database.
I am using this command an it is bringing 38 mailboxes:
Get-Mailbox -ResultSize Unlimited -Database "MDB01" | Group-Object -Property:Database | Select-Object Name, Count | Format-Table
Name Count
---- -----
MDB01 38
But when I run the command the result is quite different:
Get-Mailbox -ResultSize Unlimited -Database "MDB01" | Group-Object -Property:Database | Select-Object Name, Count | Format-Table
Name Count
---- -----
MDB01 517
Do you know why the difference?
Thanks.