SOLVED

Get the all info for "Additional Information" attributes for all meeting rooms using PowerShell

Iron Contributor
Hi Tech Folks,
 
I am trying to get the info audio, video, display, tags, etc. which is located under each meeting room or basically a resource which the type is Room.

 Exchange Admin Center --> Resources --> Select Any Meeting Room (TYPE:ROOM) --> Additional Information

 
AliFadavinia_0-1629306839362.jpeg

 

 

I used this command which is working fine and reveals everything about the room and its properties , but NOT those above info I m looking for:

Get-Mailbox -Filter '(RecipientTypeDetails -eq "RoomMailBox")' | Select * | Format-list 

How can I get those Additional Attributes by PS command?

Any thoughts?

Thanks for your inputs
1 Reply
best response confirmed by Ali Fadavinia (Iron Contributor)
Solution

@Ali Fadavinia 

I finally ended up figuring it out by combining get-mailbox & get-place together. It works great!

 

$rooms= get-mailbox -RecipientTypeDetails roommailbox

 

Foreach($mailbox in $rooms)

{

$roomname=$mailbox.identity

Get-place -identity $roomname | select * | export-csv C:\roomdetails.csv -append
}

1 best response

Accepted Solutions
best response confirmed by Ali Fadavinia (Iron Contributor)
Solution

@Ali Fadavinia 

I finally ended up figuring it out by combining get-mailbox & get-place together. It works great!

 

$rooms= get-mailbox -RecipientTypeDetails roommailbox

 

Foreach($mailbox in $rooms)

{

$roomname=$mailbox.identity

Get-place -identity $roomname | select * | export-csv C:\roomdetails.csv -append
}

View solution in original post