How many rooms and equipments mailbox are created in particular tenant? Any numbers specification?

Naveen G 0 Reputation points
2024-10-03T04:41:42.6933333+00:00

How many rooms and equipments mailbox are created in particular tenant? Any numbers specification?We know how to access the mailbox for rooms and equipments in Admin panel or exchange center. But i need the actual count of creating this

Not Monitored
Not Monitored
Tag not monitored by Microsoft.
39,056 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vasil Michev 105.5K Reputation points MVP
    2024-10-03T06:59:20.87+00:00

    There are no limits in the number of mailboxes you can created, if that's what you are asking. If you are looking for their count, use this:

    Get-Mailbox -RecipientTypeDetails RoomMailbox -ResultSize Unlimited | measure | select -ExpandProperty count
    

    Rinse and repeat for any other mailbox type you're interested in. Or do it all in one go:

    Get-Mailbox -ResultSize Unlimited | group RecipientTypeDetails -NoElement
    
    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.