Skip to main content
Question

Zoom IOS App configuration


Forum|alt.badge.img+5


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>

35 replies

Forum|alt.badge.img+6
  • Contributor
  • 19 replies
  • April 8, 2020

@promalley I don't see the SetEmailDomainsRestrictedToLogin key in the Zoom documentation, does that work...?


Forum|alt.badge.img+5
  • Author
  • Contributor
  • 12 replies
  • April 8, 2020

It works for me! One thing to note is that it would be your domain URL not just the domain.


Forum|alt.badge.img+5
  • Author
  • Contributor
  • 12 replies
  • April 8, 2020

I just noticed they removed the SetEmailDomainsRestrictedToLogin from their support page and added a few other options. I am unsure as to if it will continue to be supported.


Forum|alt.badge.img+16
  • Contributor
  • 634 replies
  • April 9, 2020

As of 4.6.9 it still functions but like you said its future may be in doubt.

The Chrome OS app supports disabling Facebook logins. I tried in vain yesterday to disable that but could only block email sign ins. We aren't allowing students to create accounts or login using school email addresses/accounts. They should only be joining teacher created meetings. Many other keys are available too, but the iOS/iPadOS app doesn't quite have that parity.

The force SSO login prompt should have the X removed from the prompt window. What's the point of forcing it if it can be easily bypassed?


Forum|alt.badge.img+7
  • Contributor
  • 33 replies
  • April 9, 2020

Hi. I'm having a hard time uploading this file to my Jamf Pro. I'm using using the built-in Propertylist editor in MacOS to create a plist with those three configuration items. But it doesn't appear to be a proper plist. What's the easiest way to create a plist or mobileconfig with those items in it? I also downloaded ProfileCreator from Github, but I can't figure out how to make a custom profile with it.


atomczynski11
Forum|alt.badge.img+18

Is it possible to create an app config for iOS/iPadOS where it locks in domain name but the user does not actually log in to the app? The user only connects to a channel?

This would be helpful for our student iPad devices where they would not be creating Zoom accounts and be able to connect with persons outside the domain.


Forum|alt.badge.img+7
  • Contributor
  • 33 replies
  • April 9, 2020

So I've been trying to create a configuration profile to accomplish this. Is that not what this is? what is an app config?


Forum|alt.badge.img+16
  • Contributor
  • 634 replies
  • April 9, 2020

@ralvarezOES Managed app configurations are XML just like property lists and config profiles but they're stripped to just a dictionary array and the settings inside it.
I.e. it should look like this:
<dict>
settings here
</dict>


Forum|alt.badge.img+7
  • Contributor
  • 33 replies
  • April 9, 2020

Ok thanks. I see there is an "app configuration" section in the managed Mobile device Apps. I'll start playing with this, but maybe you can answer a question. If the app is already installed on the devices, would a new configuration take affect? Or would I have to uninstall and reinstall the app on all the devices?


Forum|alt.badge.img+16
  • Contributor
  • 634 replies
  • April 9, 2020

The app doesn't need to be reinstalled. Once a valid config is saved it will send a Managed App Configuration command to the devices. They may need to quit the app if it's open during that time. The worst case scenario is a reinstall using Self Service.


Forum|alt.badge.img+5
  • Author
  • Contributor
  • 12 replies
  • April 14, 2020

I edited the post with a screenshot of where the configuration should be pasted.


hodgesji
Forum|alt.badge.img+16
  • Contributor
  • 63 replies
  • May 15, 2020

  • 0 replies
  • May 18, 2020

Thanks! Working fine for me


jaellington
Forum|alt.badge.img+4
  • Contributor
  • 16 replies
  • August 12, 2020

Works well - just wish there was an option to keep kids from uploading custom backgrounds. They can get...creative.


Forum|alt.badge.img
  • New Contributor
  • 1 reply
  • September 4, 2020

Does anyone have an example of the XML for configuring Zoom for iPads within Jamf School?
I tried to create a Managed App Configuration on the Zoom app and apply it to a group.
I thought I would just try to disable the facebook login. It does display an error "malformed document. First element should be <plist>". Yet it lets me apply to a group and save. But it doesn't work. Any help would be appreciated.

Here is my configuration:
<dict>
<key>DisableFacebookLogin</key> <integer>1</integer>
</dict>


Forum|alt.badge.img+2
  • New Contributor
  • 2 replies
  • September 21, 2020

@jaellington It looks like they do have support for this feature! Zoom Documentation Here

It would look like this:
<dict>
<key>DisableVirtualBkgnd</key> <integer>1</integer>
</dict>


Forum|alt.badge.img+3
  • New Contributor
  • 7 replies
  • October 5, 2020

Unfortunately, this is different in Jamf School. So, when I go into Managed Configuration for the Zoom App, I put in:
<dict> <key>ForceLoginWithSSO</key> <integer>0</integer> <key>mandatory:EnableAppleLogin</key> <integer>0</integer>
<key>mandatory:DisableFacebookLogin</key> <integer>1</integer> <key>mandatory:DisableGoogleLogin</key> <integer>1</integer> <key>mandatory:DisableLoginWithEmail</key> <integer>1</integer>
</dict>

But, I get this error: "malformed document. First element should be <plist>"

So, logically, one would think it should look something like this:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict> <key>nogoogle</key> <true/> <key>nofacebook</key> <true/> <key>disableloginwithemail</key> <true/> <key>nosso</key> <true/>
</dict>
</plist>

Is there any documentation that shows how the plist should be:

  1. Written for Zoom
  2. Where it is placed
  3. Is it a plist or .mobileconfig

Forum|alt.badge.img+16
  • Contributor
  • 634 replies
  • October 5, 2020

A quick Google search shows that it's:

<plist version="1.0">
<dict>
.......
</dict>
</plist>

Forum|alt.badge.img+11
  • Contributor
  • 76 replies
  • October 6, 2020

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>


Forum|alt.badge.img

Hello! Apologies if this has already been answered, but we're starting to notice students using the chat function of Zoom as a texting service during classes. Ideally, we would rather students only be able to join meetings, and not sign-in with their gsuite accounts. Is there a way to do this with xml? I've sent in a ticket already, but was curious to know if anyone here could help me out. Thank you in advance!


Forum|alt.badge.img+26
  • Valued Contributor
  • 907 replies
  • October 28, 2020

@user-tfABOollWd We had that same problem and I solved it by essentially yanking all the authentication methods from their iPads. Use this Managed App Config to do so with Jamf Pro. When they open the app and try to sign in, they then have no method to do so. Of course I have the unrestricted version scoped to the staff:

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

YanW
Forum|alt.badge.img+11
  • Contributor
  • 180 replies
  • October 29, 2020

@blackholemac How do you scope a same app with different App Config to two different groups?


Forum|alt.badge.img+26
  • Valued Contributor
  • 907 replies
  • October 29, 2020

@YanW Two instances of the app in the app catalog. So we have two VPP accounts, one scoped to go to Staff which has no app config and the other scoped to Students which has the app config shown above.


Forum|alt.badge.img

Is it possible to use add something in to this xml file to force a sign out of the users account when they close the App? We'd like to have this on some shared sets of iPads (not the 'Shared iPad' feature) but not have the worry of it staying signed into the user's Zoom account when they put the iPad back. Anyone know if this is possible?


Forum|alt.badge.img+4
  • Contributor
  • 14 replies
  • February 26, 2021

Has anyone gotten Zoom iOS configuration to work in jamf school? I am testing Jamf School and am very frustrated. While I appreciate the responses in the thread, none of them seem to work for me. I'm likely missing something. But I just get errors or no change to the app. Thanks


Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings