MDM with Windows Registry
Note: MDM with Window Registry is available from 24.2.4
The Everbridge 360 App can read values from the Windows Registry to prepopulate configuration values in the App.
The values are read from the following locations
Computer\HKEY_CURRENT_USER\SOFTWARE\Everbridge360
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Everbridge360
User values are looked for first, then falling back to use local machine if none are found.
All values should be of type REG_SZ;
Key | Description | Value |
---|---|---|
orgCode | Unique organization code. What is this? | MyOrgCode |
Single sign-on | ||
useInAppBrowserForSso |
Uses a WebView2 browser instead of the users default which allows the App to close the browser after logging in. May not work with all SSO configurations. |
true |
hideInAppBrowserForSso | When combinded with useInAppBrowserForSso, hides the App during the SSO login process. Useful for SSO configurations that happen automatically without user interaction. May not work with all SSO configurations. |
true |
Safety settings | ||
locationTrackingOn |
Setting this to false disables Automatic Check-in and Incident Zones for the device. It will stop the device sending location infomation back to Everbridge. |
false |
duressCode |
4 digit code used if safety settings are enabled for your App, only applies if it has not already been set. |
0000 |
safetyConnectionPhoneNumber | Emergency phone number used if safety settings are enabled for your App, only applies if it has not already been set. |
911 |
safetyConnectionCountryCode | Country code of the emergency phone number used if safety settings are enabled for your App, only applies if it has not already been set. |
ISO Country Code. e.g. US |
safetyConnectionCountry | Current country used if safety settings are enabled for your App, only applies if it has not already been set. |
ISO Country Code. e.g. US |
Notification settings | ||
criticalSound | Force a specific tone for critical/ITTL notifications. | default, Alarm.wav, Bulletin.wav, Chord.wav, Electronic Alarm.wav, Ethereal Bells.wav, Keyboard.wav, Memo.wav, None |
prioritySound | Force a specific tone for high priority notifications. | default, Alarm.wav, Bulletin.wav, Chord.wav, Electronic Alarm.wav, Ethereal Bells.wav, Keyboard.wav, Memo.wav, None |
Deployment | ||
forceStartInTray | Forces the App to always stay in tray on startup, even if the user is not logged in. |
true |
hideExitMenuItem | Removes the Exit menu item from the tray icon context menu, value should be "true" if this is required. |
true |
forceDebugLogging | Forces debug logging which can be useful in diagnosing any application issues, value should be "true" if this is required. |
true |
Bypassing Chrome/Edge popup for SSO login
You may encounter this popup when trying to automate the SSO login flow for your organization. This can be bypassed using policies set in the registry.
Chrome for Enterprise
You can view the policies if you go to chrome://policy/ For more information see the official Chrome documentation.
Chrome for Enterprise allows this to be bypassed with some registry keys
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Google\Chrome\URLAllowlist
Under URLAllowlist (Create the key if it doesn't exist) you can add the following String value
1 | REG_SZ | ebenterprise://*
Edge
You can view the policies if you go to edge://policy/, for more information see the official Microsoft Edge documentation.
Microsoft Edge allows this to be bypassed with some registry keys
Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge\URLAllowlist
Under URLAllowlist (Create the key if it doesn't exist) you can add the following String value
1 | REG_SZ | ebenterprise://*
Theses can be set with the follow PowerShell script (requires administrator rights)
# Add URLAllowlist value for Chrome
New-Item -Path "HKLM:\SOFTWARE\Policies\Google\Chrome\URLAllowlist" -Force
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Google\Chrome\URLAllowlist" -Name "1" -Value "ebenterprise://*" -PropertyType String -Force
# Add URLAllowlist value for Microsoft Edge
New-Item -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\URLAllowlist" -Force
New-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Edge\URLAllowlist" -Name "1" -Value "ebenterprise://*" -PropertyType String -Force
Article Feedback
While we can’t respond to you directly, we’d love to know how we can improve the article.
Please sign in to leave a comment.