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...
Feb 01, 2019
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
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 aliFeb 04, 2019Brass 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?
- VasilMichevFeb 04, 2019MVP
The "capacity" attribute is called ResourceCapacity. No idea what "Professional mobile" is supposed to be.
- Sofianeda1stAug 01, 2019Iron Contributor
Hello VasilMichev
Is there any way to list users who have booked a room for a specific date please ?
I dont' find something talking about this topic