Forum Discussion
ali ali
Feb 01, 2019Brass Contributor
Details for all room mailbox
Hello ,
when i try via Powershell to display all the room mailbox details in our office 365 , i dont see all of them and i dont see more details , this is my command :
PS C:\WINDOWS\system32> Get-Mailbox | Where {$_.ResourceType -eq "Room"}
Name Alias Database ProhibitSendQuota ExternalDirectoryObjectId
---- ----- -------- ------- ---------- ------------- ------------
Regards
- Use following:
Get-Mailbox -Filter '(RecipientTypeDetails -eq "RoomMailBox")' | Select Name,Alias
Add whatever properties you want after the select
See all properties and more information about the “get-mailbox” command here:
https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/get-mailbox?view=exchange-ps
Adam- ali aliBrass Contributor
thanks for this command . but i can not export capacity and Professional Mobile details from this command .Get-Mailbox -Filter '(RecipientTypeDetails -eq "RoomMailBox")' | Select *
Name,Location,Professionnal Mobile,Room Capacity
any idea?
The "capacity" attribute is called ResourceCapacity. No idea what "Professional mobile" is supposed to be.