Zoomtopia is here. Unlock the transformative power of generative AI, helping you connect, collaborate, and Work Happy with AI Companion.
Register nowEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Learn moreKeep your Zoom app up to date to access the latest features.
Download Center Download the Zoom appDownload hi-res images and animations to elevate your next Zoom meeting.
Browse Backgrounds Zoom Virtual BackgroundsEmpowering you to increase productivity, improve team effectiveness, and enhance skills.
Zoom AI Companion2023-06-12 03:08 PM
We have a Zoom room set up. When a user forwards a Zoom meeting invite, it is automatically accepted. However, when we forward a Teams meeting, it does not accept automatically. I need to go to the mailbox and click "Accept" manually. Is anyone else experiencing the same issue?
Solved! Go to Solution.
2023-06-21 11:20 AM - edited 2023-06-21 11:20 AM
Accepting or declining meeting invitations is a function of the calendar system itself, not the Zoom Room.
For example, with O365 or Exchange, the settings of the resource mailbox control what invites are accepted (or not). So, you may need to follow up with your calendar system provider (e.g. Microsoft for Exchange or O365, or Google for Google Calendar).
One thing that I have seen as an issue in the past with O365 and/or Exchange: if a meeting invite originates from an external third party, and a user forwards it to a calendar resource associated to a Zoom Room, an O365 and/or Exchange admin must execute the powershell command Set-CalendarProcessing with appropriate switches to enable the room resource to process the external meeting invite (the invite is considered "external" even if an internal users forwarded it). Follow example 8 in Microsoft's documentation, but set the flag $true instead of $false:
Set-CalendarProcessing -Identity "Room 221" -ProcessExternalMeetingMessages $true
2023-06-21 11:20 AM - edited 2023-06-21 11:20 AM
Accepting or declining meeting invitations is a function of the calendar system itself, not the Zoom Room.
For example, with O365 or Exchange, the settings of the resource mailbox control what invites are accepted (or not). So, you may need to follow up with your calendar system provider (e.g. Microsoft for Exchange or O365, or Google for Google Calendar).
One thing that I have seen as an issue in the past with O365 and/or Exchange: if a meeting invite originates from an external third party, and a user forwards it to a calendar resource associated to a Zoom Room, an O365 and/or Exchange admin must execute the powershell command Set-CalendarProcessing with appropriate switches to enable the room resource to process the external meeting invite (the invite is considered "external" even if an internal users forwarded it). Follow example 8 in Microsoft's documentation, but set the flag $true instead of $false:
Set-CalendarProcessing -Identity "Room 221" -ProcessExternalMeetingMessages $true
2023-06-21 11:33 AM
Thanks very much, that's exactly what we are looking for