Skip to main content


I wanted to share my configuration XML for those wanting to rollout zoom to IOS and lock it down.

I am working through Zoom's documentation here:
Using MDM to configure Zoom on iOS

The following is the configuration I used:

<dict> <key>SetSSOURL</key> <string>yourdomain</string> <key>SetEmailDomainsRestrictedToLogin</key> <string>yourdomain.org</string> <key>ForceLoginWithSSO</key> <integer>1</integer> </dict>

@user-parrfaAIYt I am also looking for this functionality. Did you have any luck with getting this to work?


@ctarbox @user-parrfaAIYt Don't think so. The link below lists all the available keys you can use.

https://support.zoom.us/hc/en-us/articles/360022302612-Using-MDM-to-configure-Zoom-on-iOS


Good Morning,

I am able to do it for our ipads within Jamf School. The configuration below doesn't allow a student to login whatsoever. Basically, when the student taps on "Join", the screen is blank as there are no options to log in.

To use this, you need to:

  1. Go to Apps and select the Zoom Cloud Meetings app.
  2. Create a Managed Configuration and copy the below script to it.
  3. Scope where you want to apply the Managed Configuration. Be sure to also click on the gear on the top right of the device group you want to apply the configuration to and select the newly created Managed Configuration.

<plist>
<dict>
<key>DisableLoginWithSSO</key>
<integer>1</integer>
<key>DisableFacebookLogin</key>
<integer>1</integer>
<key>DisableGoogleLogin</key>
<integer>1</integer>
<key>DisableLoginWithEmail</key>
<integer>1</integer>
<key>mandatory:EnableAppleLogin</key>
<integer>0</integer>
</dict>
</plist>

I hope this helps!


This should work for Jamf School, but you need to make it the 2nd TAB, not the 1st TAB (leave the 1st TAB blank) and then set the 2nd TAB as the default. The below is if you purchased Zoom and are using SSO.

<plist>
<dict>
<key>ForceLoginWithSSO</key>
<integer>1</integer>
<key>ForceSSOURL</key>
<string>yourdistrict.com</string>
<key>MeetingReminder</key>
<integer>1</integer>
<key>SyncMeetingFromCalendar</key>
<integer>0</integer>
</dict>
</plist>


Out of curiosity, why does it need to be on the 2nd tab?


Good Morning,

I am able to do it for our ipads within Jamf School. The configuration below doesn't allow a student to login whatsoever. Basically, when the student taps on "Join", the screen is blank as there are no options to log in.

To use this, you need to:

  1. Go to Apps and select the Zoom Cloud Meetings app.
  2. Create a Managed Configuration and copy the below script to it.
  3. Scope where you want to apply the Managed Configuration. Be sure to also click on the gear on the top right of the device group you want to apply the configuration to and select the newly created Managed Configuration.

<plist>
<dict>
<key>DisableLoginWithSSO</key>
<integer>1</integer>
<key>DisableFacebookLogin</key>
<integer>1</integer>
<key>DisableGoogleLogin</key>
<integer>1</integer>
<key>DisableLoginWithEmail</key>
<integer>1</integer>
<key>mandatory:EnableAppleLogin</key>
<integer>0</integer>
</dict>
</plist>

I hope this helps!


Haven't been able to get this to work at all in Jamf School.


Haven't been able to get this to work at all in Jamf School.


What exactly isn't working? Did you do step 3? Step 3 I initially missed when attempting this. 


No part of the config works at all for Zoom. I did copy/paste yours verbatim to eliminate any potential errors. I changed it to Automatic installation for all groups with the gear icon, no effect.


Out of curiosity, why does it need to be on the 2nd tab?


If you look at my directions further down the page (post 3/5/2021), no second tab needed. You just need the one and then choose whether or not to scope it to the group in step 3.

 

I hope this helps.


No part of the config works at all for Zoom. I did copy/paste yours verbatim to eliminate any potential errors. I changed it to Automatic installation for all groups with the gear icon, no effect.


See @Columbo's response above. It's sounding like you've overlooked the managed configuration portion of the setup. Make sure your managed configuration is checked as shown in the example below.


Just chiming in with what worked for me as of 09/2022 on iOS 15:

<dict> <key>ForceLoginWithSSO</key> <true/> <key>ForceSSOURL</key> <string>YourOrgName</string> </dict>

 

For whatever reason, integers of 1 or 0 were not working, but true/false values did.