Plist Configuration for IOS

Columbo
New Contributor II

Within Jamf School, I have created a plist for the Zoom app for IOS to block all methods of signing in. It is placed in Apps>Apps>Zoom>Managed Configuration. I have assigned it to a group that contains the app and device.

The Zoom app is version 5.3.1 and the IOS is 14.0.1 on an Ipad 7th Gen Wifi

However, it isn't working. It works perfect with MAC OS Catalina. Here is my configuration:

<?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>

Any thoughts/suggestions would be helpful.

1 REPLY 1

jwscarsdale
New Contributor III

Here's what I have under app configuration and it works, I force Single Sign On... what method DO you want to use for login?

<dict>

<key>SetSSOURL</key>

<string>domainname</string>

<key>ForceLoginWithSSO</key>

<integer>1</integer>

<key>ForceSSOURL</key>

<string>domainname</string>

<key>EnableAppleLogin</key>

<integer>0</integer>

<key>DisableFacebookLogin</key>

<integer>1</integer>

<key>DisableLoginWithEmail</key>

<integer>1</integer>

<key>DisableGoogleLogin</key>

<integer>1</integer>

</dict>

If you just want to disable google, facebook, and email it would look like this:

<dict>

<key>DisableFacebookLogin</key>

<integer>1</integer>

<key>DisableLoginWithEmail</key>

<integer>1</integer>

<key>DisableGoogleLogin</key>

<integer>1</integer>

</dict>