Posted on 02-12-2021 10:20 AM
Hello friends,
I'm trying to install a Zoom Configuration Key on some K-12 iPads to restrict the ability of the devices to connect only to Zoom meetings hosted by a particular domain.
Documentation of this capability can be found here:
https://support.zoom.us/hc/en-us/articles/360022302612-Using-MDM-to-configure-Zoom-on-iOS
The Key that I'm trying to pass through to the Zoom app is
SetAccountIDsRestrictedToJoin
But I'm not sure I'm inserting it properly into the App Configuration Preferences field.
I've entered:
{"SetAccountIDsRestrictedToJoin": {"Value": "our_zoom_account_key"}}
Can anyone help me understand how to use the Preferences field?
Thank you in advance.
Posted on 02-15-2021 07:54 PM
Bumping this post.
Thanks.
Posted on 03-10-2021 06:13 AM
Did you get this working? I'm looking into the same setting.
Posted on 03-10-2021 08:20 AM
I know @m.green has this working in his district: https://www.jamf.com/blog/interview-streamlining-the-student-experience-with-jamf-and-appconfig/
Posted on 03-10-2021 08:56 AM
@ehstein From what you've posted it doesn't look like you've formatted that managed app config properly. It should be in the form of xml or what the body of a plist would look like. Example is below:
<dict>
<key>SetAccountIDsRestrictedToJoin</key>
<string>Your Account Key</string>
</dict>
Try that see if that's what you're after.