With the Zoom Outlook add-in, administrators can deploy the add-in with the single sign-on (SSO) URL preconfigured. With the URL preconfigured, users will automatically use SSO to authenticate when they interact with the add-in, such as click the Add a Zoom Meeting or Settings options in the add-in.
Note: When using custom manifest files, the add-in will not receive automatic updates. Thus, whatever version is downloaded and installed, will continue using that version until it is manually updated. Admins should pay close attention to Outlook add-in release notes for important new features and bug fixes, and deploy the latest when needed.
This article covers:
<bt:Url id="messageReadTaskPaneUrl" DefaultValue="https://zoom.us/office365/schedule"/>
<bt:Url id="functionFile" DefaultValue="https://zoom.us/office365/addzoom"/>
<bt:Url id="phoneTaskpaneReadUrl" DefaultValue="https://zoom.us/office365/phoneread"/>
<bt:Url id="messageReadTaskPaneUrl" DefaultValue="https://zoom.us/office365/schedule?login=sso&domain=%ssodomain%"/>
<bt:Url id="functionFile" DefaultValue="https://zoom.us/office365/addzoom?login=sso&domain=%ssodomain%"/>
<bt:Url id="phoneTaskpaneReadUrl" DefaultValue="https://zoom.us/office365/phoneread?login=sso&domain=%ssodomain%"/>
If deploying the manifest package provided here, the Zoom Phone option is not provided by default, even if you do have Zoom Phone for your account. To add this option for your users, refer to the following steps on how to add Zoom Phone to the manifest:
<ExtensionPoint xsi:type="MessageReadCommandSurface">
<OfficeTab id="TabDefault">
<Group id="msgReadTabMessage.grp1">
<Label resid="groupLabel" />
<Control xsi:type="Button" id="phoneRead">
<Label resid="phoneReadButtonLabel" />
<Supertip>
<Title resid="phoneReadButtonLabel" />
<Description resid="phoneReadButtonLabelLong" />
</Supertip>
<Icon>
<bt:Image size="16" resid="zoom16" />
<bt:Image size="32" resid="zoom32" />
<bt:Image size="80" resid="zoom80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="phoneTaskpaneReadUrl" />
</Action>
</Control>
</Group>
</OfficeTab>
</ExtensionPoint>
If deploying the manifest package provided here, the Workspace Reservation option is not provided by default, even if you do have Workspace Reservation for your account. This is exclusively available for users with a Workspace license.To add this option for your users, refer to the following steps on how to add Workspace Reservation to the manifest:
<Control xsi:type="Button" id="roomListButton">
<Label resid="roomListButtonLabel" />
<Supertip>
<Title resid="workspaceSuperTipTitle" />
<Description resid="workspaceSuperTipDescription" />
</Supertip>
<Icon>
<bt:Image size="16" resid="openworkspace16" />
<bt:Image size="32" resid="openworkspace32" />
<bt:Image size="80" resid="openworkspace80" />
</Icon>
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="roomTaskpaneTaskPaneUrl" />
</Action>
</Control>
If you are using a custom manifest file and need to update it, you will need to download the latest version of the manifest and update the configuration. Once that is complete, to update the add-in, follow these steps: