Forum Discussion
ali ali
Feb 06, 2019Brass Contributor
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"} ,...
- Feb 06, 2019
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.
VasilMichev
Feb 06, 2019MVP
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.
- ali aliFeb 07, 2019Brass Contributor
thanks it's good