Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Fantasillion/6ce80e1c10ba26719fc6bce35505e9ab to your computer and use it in GitHub Desktop.
Save Fantasillion/6ce80e1c10ba26719fc6bce35505e9ab to your computer and use it in GitHub Desktop.
Get Room Lists for Room Finder and Rooms
#Get list of Room Lists for Room Finder in Outlook
Get-DistributionGroup -ResultSize Unlimited | Where {$_.RecipientTypeDetails -eq "RoomList"} | Format-Table DisplayName,Identity,PrimarySmtpAddress -AutoSize
#Get list of Rooms
Get-Mailbox -RecipientTypeDetails RoomMailbox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment