cancel
Showing results for 
Search instead for 
Did you mean: 

Zoom room not auto accept Teams meeting invite

victoryan
Listener

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?

1 ACCEPTED SOLUTION

NickMuellerZoom
Listener | Zoom Employee
Listener | Zoom Employee

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

View solution in original post

2 REPLIES 2

NickMuellerZoom
Listener | Zoom Employee
Listener | Zoom Employee

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

Thanks very much, that's exactly what we are looking for