Forum Discussion
Ali Fadavinia
Aug 18, 2021Iron Contributor
Get the all info for "Additional Information" attributes for all meeting rooms using PowerShell
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
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
Exchange Admin Center --> Resources --> Select Any Meeting Room (TYPE:ROOM) --> Additional Information
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
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
}
- Ali FadaviniaIron Contributor
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
}