If you're an admin that manages Chrome OS devices, you can configure Zoom for Chrome OS using the Google Admin console. You can set policies that control login features.
Note: The Zoom for Chrome Zoom Web App is separate from the ChromeOS app and is intended to replace it, as support for ChromeOS apps are being phased out across all operating systems by November 5, 2022. We strongly recommend admins begin migrating users from the ChromeOS app to the new Zoom for Chrome Zoom Web App to ensure a smooth transition. Learn more about auto-launching the Zoom Web App on Chrome OS devices.
This article covers:
Use a text editor to create a JSON file. The following parameters are supported. If you do not specify a parameter, the default value is used.
Parameter | Value Type | Default | Description |
BlockUntrustedSSLCert | Boolean (true or false) | False | Specify if the app will stop for an invalid certificate. If false then user will be prompted to trust the certificate or not. |
DisableGoogleLogin | Boolean (true or false) | False | Specify if signing in with Google is disabled. |
DisableFacebookLogin | Boolean (true or false) | False | Specify if signing in with Facebook is disabled. |
DisableLoginWithSSO | Boolean (true or false) | False | Specify if signing in with SSO is disabled. |
DisableLoginWithEmail | Boolean (true or false) | False | Specify if signing in with email is disabled. |
SetSSOURL | String | (empty) |
Predefine the vanity URL used to log in using SSO. Example: Enter "success" to set the SSO URL as https://success.zoom.us |
ForceLoginWithSSO | Boolean (true or false) | False | Specify if SSO is the default login method. If set to True, users can still switch to other login methods. This item will not apply if DisableLoginWithSSO is set to True. |
GoogleLoginRenameDisabled | Boolean (true or false) | False | Prevent users from renaming before joining a meeting if signed in via Google |
SSOLoginRenameDisabled | Boolean (true or false) | False | Prevent users from renaming before joining a meeting if signed in via SSO |
SetAccountIDsRestrictedToJoin | String | (empty) | Set account IDs* that the client is restricted to join meetings hosted by specific Account ID numbers |
BandwidthLimitUp | String | (empty) | Set a bandwidth restriction (in Kbps) to uplink traffic from the Zoom client |
BandwidthLimitDown | String | (empty) | Set a bandwidth restriction (in Kbps) to downlink traffic from the Zoom client |
*Note: Please have an account admin or owner submit a request to Zoom Support to acquire your account ID.
See below for a sample configuration that disables Google login and restricts login to a specific account:
{
"DisableGoogleLogin": {
"Value": true
},
"SetAccountIDsRestrictedToJoin": {
"Value": “abcdefg“
}
}