SOLVED

Mailbox Rooms properties issue

Contributor

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 ,

2 Replies
best response confirmed by ali ali (Contributor)
Solution

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.

thanks it's good