Forum Discussion

ali ali's avatar
ali ali
Brass Contributor
Feb 06, 2019
Solved

Mailbox Rooms properties issue

Hello ,

 

I'm looking to do a small script to display all my mailbox rooms with like theses setails ( name , location , capacity )

 

i have used Get-Mailbox | Where {$_.ResourceType -eq "Room"} , but to select properties , i didnt find location , capacity and other informations .

 

Any idea please ?

 

Regards ,

  • If you want to get the same level of detail as shown in the "All Room" list, use this:

     

    Get-Mailbox -RecipientTypeDetails RoomMailbox | select Name,Office,ResourceCapacity

     

    Office = Location, ResourceCapacity =  capacity.

  • If you want to get the same level of detail as shown in the "All Room" list, use this:

     

    Get-Mailbox -RecipientTypeDetails RoomMailbox | select Name,Office,ResourceCapacity

     

    Office = Location, ResourceCapacity =  capacity.

Resources