-2

I have 200+ Office 365 users. I would like to force all the room calendars into their accounts. They have permission already to view and add meetings, but have to manually add calendar>from room list to make the calendars visible to them. I've been googling in vain to find a powershell command to add these calendars to all users at once.

E_net4
  • 27,810
  • 13
  • 101
  • 139
pablokimon
  • 92
  • 1
  • 6

1 Answers1

1

You should setup Room Lists, for example

 New-DistributionGroup -Name "Conference Rooms" –PrimarySmtpAddress "ConfRooms@email.com" –RoomList

Add your Rooms with Add-DistributionGroupMember

Outlook will automatically detect Room List Distribution Groups and populates the Room Finder with room lists in Outlook when an end user is setting up a meeting. For more information check the help for New-DistributionGroup

jfrmilner
  • 1,458
  • 10
  • 11
  • Thank you. I'll give this a try and repost this question in superuser. I appreciate your answer. – pablokimon Dec 15 '19 at 18:55
  • Thank you for this. While it did create a nice "Meeting Rooms" group and helped populate the meeting location field, it still does not solve the issue of needing to manually add the room calendars via outlook to make them visible in OWA. I've reposted in SuperUsers and will hope for a solution there. – pablokimon Dec 21 '19 at 19:31