1 **IMPORTANT**: This file is in active development along with the policies in Firefox. To get the policy information that corresponds to a specific release, go to https://github.com/mozilla/policy-templates/releases.
3 Policies can be specified using the Group Policy templates on Windows (https://github.com/mozilla/policy-templates/tree/master/windows), configuration profiles on macOS (https://github.com/mozilla/policy-templates/tree/master/mac), or by creating a file called `policies.json`. On Windows, create a directory called `distribution` where the EXE is located and place the file there. On Mac, the file goes into `Firefox.app/Contents/Resources/distribution`. On Linux, the file goes into `firefox/distribution`, where `firefox` is the installation directory for firefox, which varies by distribution.
5 The content of the JSON file should look like this:
13 Policies are documented below.
17 Change the URL for application update.
19 **Compatibility:** Firefox 62, Firefox ESR 60.2\
20 **CCK2 Equivalent:** N/A\
21 **Preferences Affected:** `app.update.url`
25 Software\Policies\Mozilla\Firefox\AppUpdateURL = "https://yoursite.com"
30 <key>AppUpdateURL</key>
31 <string>https://yoursite.com</string>
38 "AppUpdateURL": "https://yoursite.com"
44 Configure sites that support integrated authentication.
46 See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information.
48 **Compatibility:** Firefox 60, Firefox ESR 60 (AllowNonFQDN added in 62/60.2)\
49 **CCK2 Equivalent:** N/A\
50 **Preferences Affected:** `network.negotiate-auth.trusted-uris`, `network.negotiate-auth.delegation-uris`, `network.automatic-ntlm-auth.trusted-uris`, `network.automatic-ntlm-auth.allow-non-fqdn`, `network.negotiate-auth.allow-non-fqdn`
54 Software\Policies\Mozilla\Firefox\Authentication\SPNEGO\1 = "mydomain.com"
55 Software\Policies\Mozilla\Firefox\Authentication\SPNEGO\2 = "https://myotherdomain.com"
56 Software\Policies\Mozilla\Firefox\Authentication\Delegated\1 = "mydomain.com"
57 Software\Policies\Mozilla\Firefox\Authentication\Delegated\2 = "https://myotherdomain.com"
58 Software\Policies\Mozilla\Firefox\Authentication\NTLM\1 = "mydomain.com"
59 Software\Policies\Mozilla\Firefox\Authentication\NTLM\2 = "https://myotherdomain.com"
60 Software\Policies\Mozilla\Firefox\Authentication\AllowNonFQDN\SPNEGO = 0x1 | 0x0
61 Software\Policies\Mozilla\Firefox\Authentication\AllowNonFQDN\NTLM = 0x1 | 0x0
66 <key>Authentication</key>
70 <string>mydomain.com</string>
71 <string>https://myotherdomain.com</string>
75 <string>mydomain.com</string>
76 <string>https://myotherdomain.com</string>
80 <string>mydomain.com</string>
81 <string>https://myotherdomain.com</string>
83 <key>AllowNonFQDN</key>
98 "SPNEGO": ["mydomain.com", "https://myotherdomain.com"],
99 "Delegated": ["mydomain.com", "https://myotherdomain.com"],
100 "NTLM": ["mydomain.com", "https://myotherdomain.com"],
102 "SPNEGO": true | false,
111 Block access to the Add-ons Manager (about:addons).
113 **Compatibility:** Firefox 60, Firefox ESR 60\
114 **CCK2 Equivalent:** `disableAddonsManager`\
115 **Preferences Affected:** N/A
119 Software\Policies\Mozilla\Firefox\BlockAboutAddons = 0x1 | 0x0
124 <key>BlockAboutAddons</key>
132 "BlockAboutAddons": true | false
138 Block access to about:config.
140 **Compatibility:** Firefox 60, Firefox ESR 60\
141 **CCK2 Equivalent:** `disableAboutConfig`\
142 **Preferences Affected:** N/A
146 Software\Policies\Mozilla\Firefox\BlockAboutConfig = 0x1 | 0x0
151 <key>BlockAboutConfig</key>
159 "BlockAboutConfig": true | false
163 ### BlockAboutProfiles
165 Block access to About Profiles (about:profiles).
167 **Compatibility:** Firefox 60, Firefox ESR 60\
168 **CCK2 Equivalent:** `disableAboutProfiles`\
169 **Preferences Affected:** N/A
173 Software\Policies\Mozilla\Firefox\BlockAboutProfiles = 0x1 | 0x0
178 <key>BlockAboutProfiles</key>
186 "BlockAboutProfiles": true | false
190 ### BlockAboutSupport
192 Block access to Troubleshooting Information (about:support).
194 **Compatibility:** Firefox 60, Firefox ESR 60\
195 **CCK2 Equivalent:** `disableAboutSupport`\
196 **Preferences Affected:** N/A
200 Software\Policies\Mozilla\Firefox\BlockAboutSupport = 0x1 | 0x0
205 <key>BlockAboutSupport</key>
213 "BlockAboutSupport": true | false
219 Add bookmarks in either the bookmarks toolbar or menu. Only `Title` and `URL` are required. If `Placement` is not specified, the bookmark will be placed on the toolbar. If `Folder` is specified, it is automatically created and bookmarks with the same folder name are grouped together.
221 **Compatibility:** Firefox 60, Firefox ESR 60\
222 **CCK2 Equivalent:** `bookmarks.toolbar`,`bookmarks.menu`\
223 **Preferences Affected:** N/A
227 Software\Policies\Mozilla\Firefox\Bookmarks\1\Title = "Example"
228 Software\Policies\Mozilla\Firefox\Bookmarks\1\URL = "https://example.com"
229 Software\Policies\Mozilla\Firefox\Bookmarks\1\Favicon = "https://example.com/favicon.ico"
230 Software\Policies\Mozilla\Firefox\Bookmarks\1\Placement = "toolbar" | "menu"
231 Software\Policies\Mozilla\Firefox\Bookmarks\1\Folder = "FolderName"
240 <string>Example</string>
242 <string>https://example.com</string>
244 <string>https://example.com/favicon.ico</string>
246 <string>toolbar | menu</string>
248 <string>FolderName</string>
260 "URL": "https://example.com",
261 "Favicon": "https://example.com/favicon.ico",
262 "Placement": "toolbar" | "menu",
263 "Folder": "FolderName"
270 Enable or disable the detection of captive portals.
272 **Compatibility:** Firefox 67, Firefox ESR 60.7\
273 **CCK2 Equivalent:** N/A\
274 **Preferences Affected:** `network.captive-portal-service.enabled`
278 Software\Policies\Mozilla\Firefox\CaptivePortal = 0x1 | 0x0
283 <key>CaptivePortal</key>
291 "CaptivePortal": true | false
297 ### Certificates | ImportEnterpriseRoots
299 Trust certificates that have been added to the operating system certificate store by a user or administrator.
301 See https://support.mozilla.org/kb/setting-certificate-authorities-firefox for more detail.
303 **Compatibility:** Firefox 60, Firefox ESR 60 (macOS support in Firefox 63, Firefox ESR 68)\
304 **CCK2 Equivalent:** N/A\
305 **Preferences Affected:** `security.enterprise_roots.enabled`
309 Software\Policies\Mozilla\Firefox\Certificates\ImportEnterpriseRoots = 0x1 | 0x0
314 <key>Certificates</key>
316 <key>ImportEnterpriseRoots</key>
326 "ImportEnterpriseRoots": true | false
331 ### Certificates | Install
333 Install certificates into the Firefox certificate store. If only a filename is specified, Firefox searches for the file in the following locations:
336 - %USERPROFILE%\AppData\Local\Mozilla\Certificates
337 - %USERPROFILE%\AppData\Roaming\Mozilla\Certificates
339 - /Library/Application Support/Mozilla/Certificates
340 - ~/Library/Application Support/Mozilla/Certificates
342 - /usr/lib/mozilla/certificates
343 - /usr/lib64/mozilla/certificates
344 - ~/.mozilla/certificates
346 Starting with Firefox 65, Firefox 60.5 ESR, a fully qualified path can be used, including UNC paths. You should use the native path style for your operating system. We do not support using %USERPROFILE% or other environment variables on Windows.
348 If you are specifying the path in the policies.json file on Windows, you need to escape your backslashes (`\\`) which means that for UNC paths, you need to escape both (`\\\\`). If you use group policy, you only need one backslash.
350 Certificates are installed using the trust string `CT,CT,`.
352 Binary (DER) and ASCII (PEM) certificates are both supported.
354 **Compatibility:** Firefox 64, Firefox ESR 64\
355 **CCK2 Equivalent:** `certs.ca`\
356 **Preferences Affected:** N/A
360 Software\Policies\Mozilla\Firefox\Certificates\Install\1 = "cert1.der"
361 Software\Policies\Mozilla\Firefox\Certificates\Install\2 = "C:\Users\username\cert2.pem"
366 <key>Certificates</key>
370 <string>cert1.der</string>
371 <string>/Users/username/cert2.pem</string>
381 "Install": ["cert1.der", "/home/username/cert2.pem"]
387 Configure cookie preferences.
389 `Allow` is a list of origins (not domains) where cookies are always allowed. You must include http or https.
391 `Block` is a list of origins (not domains) where cookies are always blocked. You must include http or https.
393 `Default` determines whether cookies are accepted at all.
395 `AcceptThirdParty` determines how third-party cookies are handled.
397 `ExpireAtSessionEnd` determines when cookies expire.
399 `RejectTracker` only rejects cookies for trackers.
401 `Locked` prevents the user from changing cookie preferences.
403 **Compatibility:** Firefox 60, Firefox ESR 60 (RejectTracker was added in Firefox 63)\
404 **CCK2 Equivalent:** N/A\
405 **Preferences Affected:** `network.cookie.cookieBehavior`,`network.cookie.lifetimePolicy`
409 Software\Policies\Mozilla\Firefox\Cookies\Allow\1 = "https://example.com"
410 Software\Policies\Mozilla\Firefox\Cookies\Block\1 = "https://example.org"
411 Software\Policies\Mozilla\Firefox\Cookies\Default = 0x1 | 0x0
412 Software\Policies\Mozilla\Firefox\Cookies\AcceptThirdParty = "always" | "never" |"from-visited"
413 Software\Policies\Mozilla\Firefox\Cookies\ExpireAtSessionEnd = 0x1 | 0x0
414 Software\Policies\Mozilla\Firefox\Cookies\RejectTracker = 0x1 | 0x0
415 Software\Policies\Mozilla\Firefox\Cookies\Locked = 0x1 | 0x0
424 <string>http://example.com</string>
428 <string>http://example.org</string>
432 <key>AcceptThirdParty</key>
433 <string>always | never | from-visited</string>
434 <key>ExpireAtSessionEnd</key>
436 <key>RejectTracker</key>
448 "Allow": ["http://example.org/"],
449 "Block": ["http://example.edu/"],
450 "Default": true | false,
451 "AcceptThirdParty": "always" | "never" | "from-visited"],
452 "ExpireAtSessionEnd": true | false,
453 "RejectTracker": true | false,
454 "Locked": true | false
460 Configure DNS over HTTPS.
462 `Enabled` determines whether DNS over HTTPS is enabled
464 `ProviderURL` is a URL to another provider.
466 `Locked` prevents the user from changing DNS over HTTPS preferences.
468 **Compatibility:** Firefox 63, Firefox ESR 68\
469 **CCK2 Equivalent:** N/A\
470 **Preferences Affected:** `network.trr.mode`,`network.trr.uri`
474 Software\Policies\Mozilla\Firefox\Cookies\Enabled = 0x1 | 0x0
475 Software\Policies\Mozilla\Firefox\Cookies\ProviderURL = "URL_TO_ALTERNATE_PROVIDER"
476 Software\Policies\Mozilla\Firefox\Cookies\Locked = 0x1 | 0x0
485 <key>ProviderURL</key>
486 <string>URL_TO_ALTERNATE_PROVIDER</string>
497 "Enabled": true | false,
498 "ProviderURL": "URL_TO_ALTERNATE_PROVIDER",
499 "Locked": true | false
504 ### DisableSetDesktopBackground
505 Remove the "Set As Desktop Background..." menuitem when right clicking on an image.
507 **Compatibility:** Firefox 60, Firefox ESR 60\
508 **CCK2 Equivalent:** `removeSetDesktopBackground`\
509 **Preferences Affected:** N/A
513 Software\Policies\Mozilla\Firefox\DisableSetDesktopBackground = 0x1 | 0x0
519 <key>DisableSetDesktopBackground</key>
527 "DisableSetDesktopBackground": true | false
531 ### DisableMasterPasswordCreation
532 Remove the master password functionality.
534 **Compatibility:** Firefox 60, Firefox ESR 60\
535 **CCK2 Equivalent:** `noMasterPassword`\
536 **Preferences Affected:** N/A
540 Software\Policies\Mozilla\Firefox\DisableMasterPasswordCreation = 0x1 | 0x0
546 <key>DisableMasterPasswordCreation</key>
554 "DisableMasterPasswordCreation": true | false
559 Turn off application updates.
561 **Compatibility:** Firefox 60, Firefox ESR 60\
562 **CCK2 Equivalent:** `disableFirefoxUpdates`\
563 **Preferences Affected:** N/A
567 Software\Policies\Mozilla\Firefox\DisableAppUpdate = 0x1 | 0x0
572 <key>DisableAppUpdate</key>
580 "DisableAppUpdate": true | false
584 ### DisableBuiltinPDFViewer
585 Disable the built in PDF viewer. PDF files are downloaded and sent externally.
587 **Compatibility:** Firefox 60, Firefox ESR 60\
588 **CCK2 Equivalent:** `disablePDFjs`\
589 **Preferences Affected:** `pdfjs.disabled`
593 Software\Policies\Mozilla\Firefox\DisableBuiltinPDFViewer = 0x1 | 0x0
599 <key>DisableBuiltinPDFViewer</key>
607 "DisableBuiltinPDFViewer": true | false
611 ### DisableDeveloperTools
612 Remove access to all developer tools.
614 **Compatibility:** Firefox 60, Firefox ESR 60\
615 **CCK2 Equivalent:** `removeDeveloperTools`\
616 **Preferences Affected:** `devtools.policy.disabled`
620 Software\Policies\Mozilla\Firefox\DisableDeveloperTools = 0x1 | 0x0`
626 <key>DisableDeveloperTools</key>
634 "DisableDeveloperTools": true | false
638 ### DisableFeedbackCommands
639 Disable the menus for reporting sites (Submit Feedback, Report Deceptive Site).
641 **Compatibility:** Firefox 60, Firefox ESR 60\
642 **CCK2 Equivalent:** N/A\
643 **Preferences Affected:** N/A
647 Software\Policies\Mozilla\Firefox\DisableFeedbackCommands = 0x1 | 0x0
652 <key>DisableFeedbackCommands</key>
660 "DisableFeedbackCommands": true | false
664 ### DisableFirefoxScreenshots
665 Remove access to Firefox Screenshots.
667 **Compatibility:** Firefox 60, Firefox ESR 60\
668 **CCK2 Equivalent:** N/A\
669 **Preferences Affected:** `extensions.screenshots.disabled`
673 Software\Policies\Mozilla\Firefox\DisableFirefoxScreenshots = 0x1 | 0x0
678 <key>DisableFirefoxScreenshots</key>
686 "DisableFirefoxScreenshots": true | false
690 ### DisableFirefoxAccounts
691 Disable Firefox Accounts intergration (Sync).
693 **Compatibility:** Firefox 60, Firefox ESR 60\
694 **CCK2 Equivalent:** `disableSync`\
695 **Preferences Affected:** `identity.fxaccounts.enabled`
699 Software\Policies\Mozilla\Firefox\DisableFirefoxAccounts = 0x1 | 0x0
704 <key>DisableFirefoxAccounts</key>
712 "DisableFirefoxAccounts": true | false
716 ### DisableFirefoxStudies
717 Disable Firefox studies (Shield).
719 **Compatibility:** Firefox 60, Firefox ESR 60\
720 **CCK2 Equivalent:** `disableForget`\
721 **Preferences Affected:** N/A
725 Software\Policies\Mozilla\Firefox\DisableFirefoxStudies = 0x1 | 0x0
730 <key>DisableFirefoxStudies</key>
738 "DisableFirefoxStudies": true | false
742 ### DisableForgetButton
743 Disable the "Forget" button.
745 **Compatibility:** Firefox 60, Firefox ESR 60\
746 **CCK2 Equivalent:** `disableForget`\
747 **Preferences Affected:** N/A
751 Software\Policies\Mozilla\Firefox\DisableForgetButton = 0x1 | 0x0
756 <key>DisableForgetButton</key>
764 "DisableForgetButton": true | false
768 ### DisableFormHistory
769 Turn off saving information on web forms and the search bar.
771 **Compatibility:** Firefox 60, Firefox ESR 60\
772 **CCK2 Equivalent:** `disableFormFill`\
773 **Preferences Affected:** ` browser.formfill.enable`
777 Software\Policies\Mozilla\Firefox\DisableFormHistory = 0x1 | 0x0
782 <key>DisableFormHistory</key>
790 "DisableFormHistory": true | false
795 Removes Pocket in the Firefox UI. It does not remove it from the new tab page.
797 **Compatibility:** Firefox 60, Firefox ESR 60\
798 **CCK2 Equivalent:** `disablePocket`\
799 **Preferences Affected:** `extensions.pocket.enabled`
803 Software\Policies\Mozilla\Firefox\DisablePocket = 0x1 | 0x0
808 <key>DisablePocket</key>
816 "DisablePocket": true | false
820 ### DisablePrivateBrowsing
821 Removes access to private browsing.
823 **Compatibility:** Firefox 60, Firefox ESR 60\
824 **CCK2 Equivalent:** `disablePrivateBrowsing`\
825 **Preferences Affected:** N/A
829 Software\Policies\Mozilla\Firefox\DisablePrivateBrowsing = 0x1 | 0x0
834 <key>DisablePrivateBrowsing</key>
842 "DisablePrivateBrowsing": true | false
846 ### DisableProfileImport
847 Disables the "Import data from another browser" option in the bookmarks window.
849 **Compatibility:** Firefox 60, Firefox ESR 60\
850 **CCK2 Equivalent:** N/A\
851 **Preferences Affected:** N/A
855 Software\Policies\Mozilla\Firefox\DisableProfileImport = 0x1 | 0x0
860 <key>DisableProfileImport</key>
868 "DisableProfileImport": true | false
872 ### DisableProfileRefresh
873 Disable the Refresh Firefox button on about:support and support.mozilla.org, as well as the prompt that displays offering to refresh Firefox when you haven't used it in a while.
875 **Compatibility:** Firefox 60, Firefox ESR 60\
876 **CCK2 Equivalent:** `disableResetFirefox`\
877 **Preferences Affected:** `browser.disableResetPrompt`
881 Software\Policies\Mozilla\Firefox\DisableProfileRefresh = 0x1 | 0x0
886 <key>DisableProfileRefresh</key>
894 "DisableProfileRefresh": true | false
901 **Compatibility:** Firefox 60, Firefox ESR 60 (Windows, macOS)\
902 **CCK2 Equivalent:** `disableSafeMode`\
903 **Preferences Affected:** N/A
907 Software\Policies\Mozilla\Firefox\DisableSafeMode = 0x1 | 0x0
912 <key>DisableSafeMode</key>
920 "DisableSafeMode": true | false
924 ### DisableSecurityBypass
925 Prevent the user from bypassing security in certain cases.
927 `InvalidCertificate` prevents adding an exception when an invalid certificate is shown.
929 `SafeBrowsing` prevents selecting "ignore the risk" and visiting a harmful site anyway.
931 **Compatibility:** Firefox 60, Firefox ESR 60\
932 **CCK2 Equivalent:** N/A\
933 **Preferences Affected:** `security.certerror.hideAddException`,`browser.safebrowsing.allowOverride`
937 Software\Policies\Mozilla\Firefox\DisableSecurityBypass\InvalidCertificate = 0x1 | 0x0
938 Software\Policies\Mozilla\Firefox\DisableSecurityBypass\SafeBrowsing = 0x1 | 0x0
943 <key>DisableSecurityBypass</key>
945 <key>InvalidCertificate</key>
948 <key><SafeBrowsing/key>
957 "DisableSecurityBypass": {
958 "InvalidCertificate": true false,
959 "SafeBrowsing": true false
964 ### DisableSystemAddonUpdate
965 Prevent system add-ons from being installed or update.
967 **Compatibility:** Firefox 60, Firefox ESR 60\
968 **CCK2 Equivalent:** N/A\
969 **Preferences Affected:** N/A
972 ```Software\Policies\Mozilla\Firefox\DisableSystemAddonUpdate = 0x1 | 0x0
977 <key>DisableSystemAddonUpdate</key>
985 "DisableSystemAddonUpdate": true | false
990 Prevent the upload of telemetry data.
992 Mozilla recommends that you do not disable telemetry. Information collected through telemetry helps us build a better product for businesses like yours.
994 **Compatibility:** Firefox 60, Firefox ESR 60\
995 **CCK2 Equivalent:** `disableTelemetry`\
996 **Preferences Affected:** `datareporting.healthreport.uploadEnabled,datareporting.policy.dataSubmissionEnabled`
1000 Software\Policies\Mozilla\Firefox\DisableTelemetry = 0x1 | 0x0
1005 <key>DisableTelemetry</key>
1013 "DisableTelemetry": true | false
1017 ### DisplayBookmarksToolbar
1018 Set the initial state of the bookmarks toolbar. A user can still hide it and it will stay hidden.
1020 **Compatibility:** Firefox 60, Firefox ESR 60\
1021 **CCK2 Equivalent:** `displayBookmarksToolbar`\
1022 **Preferences Affected:** N/A
1026 Software\Policies\Mozilla\Firefox\DisplayBookmarksToolbar = 0x1 | 0x0
1031 <key>DisplayBookmarksToolbar</key>
1039 "DisplayBookmarksToolbar": true | false
1043 ### DontCheckDefaultBrowser
1044 Set the initial state of the menubar. A user can still hide it and it will stay hidden.
1046 **Compatibility:** Firefox 60, Firefox ESR 60 (Windows, some Linux)\
1047 **CCK2 Equivalent:** `displayMenuBar`\
1048 **Preferences Affected:** N/~
1052 Software\Policies\Mozilla\Firefox\DisplayMenuBar = 0x1 | 0x0
1057 <key>DisplayMenuBar</key>
1065 "DisplayMenuBar": true | false
1069 ### DontCheckDefaultBrowser
1070 Don't check if Firefox is the default browser at startup.
1072 **Compatibility:** Firefox 60, Firefox ESR 60\
1073 **CCK2 Equivalent:** `dontCheckDefaultBrowser`\
1074 **Preferences Affected:** `browser.shell.checkDefaultBrowser`
1078 Software\Policies\Mozilla\Firefox\DontCheckDefaultBrowser = 0x1 | 0x0
1083 <key>DontCheckDefaultBrowser</key>
1091 "DontCheckDefaultBrowser": true | false
1095 ### EnableTrackingProtection
1096 Configure tracking proection.
1098 If this policy is not configured, tracking protection is not enabled by default in the browser, but it is enabled by default in private browsing and the user can change it.
1100 If `Value` is set to false, tracking protection is disabled and locked in both the regular browser and private browsing.
1102 If `Value` is set to true, tracking protection is enabled by default in both the regular browser and private browsing and the `Locked` value determines whether or not a user can change it.
1104 **Compatibility:** Firefox 60, Firefox ESR 60\
1105 **CCK2 Equivalent:** `dontCheckDefaultBrowser`\
1106 **Preferences Affected:** `privacy.trackingprotection.enabled`,`privacy.trackingprotection.pbmode.enabled`
1110 Software\Policies\Mozilla\Firefox\EnableTrackingProtection\Value = 0x1 | 0x0
1111 Software\Policies\Mozilla\Firefox\EnableTrackingProtection\Locked = 0x1 | 0x0
1116 <key>EnableTrackingProtection</key>
1130 "EnableTrackingProtection": {
1131 "Value": [true, false],
1132 "Locked": [true, false]
1137 Controls the installation, uninstallation and locking of extensions.
1139 `Install` is a list of URLs or native paths for extensions to be installed.
1141 `Uninstall` is a list of extension IDs that should be uninstalled if found.
1143 `Locked` is a list of extension IDs that the user cannot disable or uninstall.
1145 **Compatibility:** Firefox 60, Firefox ESR 60\
1146 **CCK2 Equivalent:** `addons`\
1147 **Preferences Affected:** N/A
1151 Software\Policies\Mozilla\Firefox\Extensions\Install\1 = "https://addons.mozilla.org/firefox/downloads/somefile.xpi"
1152 Software\Policies\Mozilla\Firefox\Extensions\Install\2 = "//path/to/xpi"
1153 Software\Policies\Mozilla\Firefox\Extensions\Uninstall\1 = "bad_addon_id@mozilla.org"
1154 Software\Policies\Mozilla\Firefox\Extensions\Locked\1 = "addon_id@mozilla.org"
1159 <key>Extensions</key>
1163 <string>https://addons.mozilla.org/firefox/downloads/somefile.xpi</string>
1164 <string>//path/to/xpi</string>
1166 <key>Uninstall</key>
1168 <string>bad_addon_id@mozilla.org</string>
1172 <string>addon_id@mozilla.org</string>
1184 "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"],
1185 "Uninstall": ["bad_addon_id@mozilla.org"],
1186 "Locked": ["addon_id@mozilla.org"]
1192 Control extension updates.
1194 **Compatibility:** Firefox 67, Firefox ESR 60.7\
1195 **CCK2 Equivalent:** N/A\
1196 **Preferences Affected:** `extensions.update.enabled`
1200 Software\Policies\Mozilla\Firefox\ExtensionUpdate = 0x1 | 0x0
1205 <key>ExtensionUpdate</key>
1213 "ExtensionUpdate": true | false
1217 ### HardwareAcceleration
1218 Control hardware acceleration.
1220 **Compatibility:** Firefox 60, Firefox ESR 60\
1221 **CCK2 Equivalent:** N/A\
1222 **Preferences Affected:** `layers.acceleration.disabled`
1226 Software\Policies\Mozilla\Firefox\HardwareAcceleration = 0x1 | 0x0
1231 <key>HardwareAcceleration</key>
1239 "HardwareAcceleration": true | false
1243 ### NoDefaultBookmarks
1244 Disable the creation of default bookmarks.
1246 This policy is only effective if the user profile has not been created yet.
1248 **Compatibility:** Firefox 60, Firefox ESR 60\
1249 **CCK2 Equivalent:** `removeDefaultBookmarks`\
1250 **Preferences Affected:** N/A
1254 Software\Policies\Mozilla\Firefox\NoDefaultBookmarks = 0x1 | 0x0
1259 <key>NoDefaultBookmarks</key>
1267 "NoDefaultBookmarks": true | false
1271 ### OfferToSaveLogins
1272 Control whether or not Firefox offers to save passwords.
1274 **Compatibility:** Firefox 60, Firefox ESR 60\
1275 **CCK2 Equivalent:** `dontRememberPasswords`\
1276 **Preferences Affected:** `signon.rememberSignons`
1280 Software\Policies\Mozilla\Firefox\OfferToSaveLogins = 0x1 | 0x0
1285 <key>OfferToSaveLogins</key>
1293 "OfferToSaveLogins": true | false
1298 Configure the default homepage and how Firefox starts.
1300 `URL` is the default homepage.
1302 `Locked` prevents the user from changing homepage preferences.
1304 `Additional` allows for more than one homepage.
1306 `StartPage` is how Firefox starts. The choices are no homepage, the default homepage or the previous session.
1308 **Compatibility:** Firefox 60, Firefox ESR 60 (StartPage was added in Firefox 60, Firefox ESR 60.4)\
1309 **CCK2 Equivalent:** `homePage`,`lockHomePage`\
1310 **Preferences Affected:** `browser.startup.homepage`,`browser.startup.page`
1314 Software\Policies\Mozilla\Firefox\Homepage\URL = "https://example.com"
1315 Software\Policies\Mozilla\Firefox\Homepage\Locked = 0x1 | 0x0
1316 Software\Policies\Mozilla\Firefox\Homepage\Additional\1 = "https://example.org"
1317 Software\Policies\Mozilla\Firefox\Homepage\Additional\2 = "https://example.edu"
1318 Software\Policies\Mozilla\Firefox\Homepage\StartPage = "none" | "homepage" | "previous-session"
1326 <string>http://example.com</string>
1329 <key>Additional</key>
1331 <string>http://example.org</string>
1332 <string>http://example.edu</string>
1334 <key>StartPage</key>
1335 <string>always | never | from-visited</string>
1344 "URL": "http://example.com/",
1345 "Locked": true | false,
1346 "Additional": ["http://example.org/",
1347 "http://example.edu/"],
1348 "StartPage": "none" | "homepage" | "previous-session"
1354 Configure the default pop-up window policy as well as origins for which pop-up windows are allowed.
1356 `Allow` is a list of origins where popup-windows are allowed.
1358 `Default` determines whether or not pop-up windows are allowed by default.
1360 `Locked` prevents the user from changing pop-up preferences.
1362 **Compatibility:** Firefox 60, Firefox ESR 60\
1363 **CCK2 Equivalent:** `permissions.popup`\
1364 **Preferences Affected:** `dom.disable_open_during_load`
1368 Software\Policies\Mozilla\Firefox\PopupBlocking\Allow\1 = "https://example.org"
1369 Software\Policies\Mozilla\Firefox\PopupBlocking\Allow\2 = "https://example.edu"
1370 Software\Policies\Mozilla\Firefox\PopupBlocking\Default = 0x1 | 0x0
1371 Software\Policies\Mozilla\Firefox\PopupBlocking\Locked = 0x1 | 0x0
1376 <key>PopupBlocking</key>
1380 <string>http://example.org</string>
1381 <string>http://example.edu</string>
1395 "Allow": ["http://example.org/",
1396 "http://example.edu/"],
1397 "Default": true | false,
1398 "Locked": true | false
1403 ### InstallAddonsPermission
1404 Configure the default extension install policy as well as origins for extension installs are allowed. This policy does not override turning off all extension installs.
1406 `Allow` is a list of origins where extension installs are allowed.
1408 `Default` determines whether or not extension installs are allowed by default.
1410 **Compatibility:** Firefox 60, Firefox ESR 60\
1411 **CCK2 Equivalent:** `permissions.install`\
1412 **Preferences Affected:** `xpinstall.enabled`
1416 Software\Policies\Mozilla\Firefox\InstallAddonsPermission\Allow\1 = "https://example.org"
1417 Software\Policies\Mozilla\Firefox\InstallAddonsPermission\Allow\2 = "https://example.edu"
1418 Software\Policies\Mozilla\Firefox\InstallAddonsPermission\Default = 0x1 | 0x0
1423 <key>InstallAddonsPermission</key>
1427 <string>http://example.org</string>
1428 <string>http://example.edu</string>
1439 "InstallAddonsPermission": {
1440 "Allow": ["http://example.org/",
1441 "http://example.edu/"],
1442 "Default": true | false
1448 Configure the default Flash plugin policy as well as origins for which Flash is allowed.
1450 `Allow` is a list of origins where Flash are allowed.
1452 `Block` is a list of origins where Flash is not allowed.
1454 `Default` determines whether or not Flash is allowed by default.
1456 `Locked` prevents the user from changing Flash preferences.
1458 **Compatibility:** Firefox 60, Firefox ESR 60\
1459 **CCK2 Equivalent:** `permissions.plugin`\
1460 **Preferences Affected:** `plugin.state.flash`
1464 Software\Policies\Mozilla\Firefox\FlashPlugin\Allow\1 = "https://example.org"
1465 Software\Policies\Mozilla\Firefox\FlashPlugin\Block\1 = "https://example.edu"
1466 Software\Policies\Mozilla\Firefox\FlashPlugin\Default = 0x1 | 0x0
1467 Software\Policies\Mozilla\Firefox\FlashPlugin\Locked = 0x1 | 0x0
1472 <key>FlashPlugin</key>
1476 <string>http://example.org</string>
1480 <string>http://example.edu</string>
1494 "Allow": ["http://example.org/"],
1495 "Block": ["http://example.edu/"],
1496 "Default": true | false,
1497 "Locked": true | false
1502 ### NetworkPrediction
1503 Enable or disable network prediction (DNS prefetching).
1505 **Compatibility:** Firefox 67, Firefox ESR 60.7\
1506 **CCK2 Equivalent:** N/A\
1507 **Preferences Affected:** `network.dns.disablePrefetch`,`network.dns.disablePrefetchFromHTTPS`
1511 Software\Policies\Mozilla\Firefox\NetworkPrediction = 0x1 | 0x0
1516 <key>NetworkPrediction</key>
1524 "NetworkPrediction": true | false
1527 ### OverrideFirstRunPage
1528 Override the first run page. If the value is blank, no first run page is displayed.
1530 **Compatibility:** Firefox 60, Firefox ESR 60\
1531 **CCK2 Equivalent:** `welcomePage`,`noWelcomePage`\
1532 **Preferences Affected:** `startup.homepage_welcome_url`
1536 Software\Policies\Mozilla\Firefox\OverrideFirstRunPage = "http://example.org"
1541 <key>OverrideFirstRunPage</key>
1542 <string>http://example.org</string>
1549 "OverrideFirstRunPage": ""http://example.org""
1552 ### OverridePostUpdatePage
1553 Override the upgrade page. If the value is blank, no upgrade page is displayed.
1555 **Compatibility:** Firefox 60, Firefox ESR 60\
1556 **CCK2 Equivalent:** `upgradePage`,`noUpgradePage`\
1557 **Preferences Affected:** `startup.homepage_override_url`
1561 Software\Policies\Mozilla\Firefox\OverridePostUpdatePage = "http://example.org"
1566 <key>OverridePostUpdatePage</key>
1567 <string>http://example.org</string>
1574 "OverridePostUpdatePage": ""http://example.org""
1578 Set permissions associated with camera, microphone, location, and notifications
1580 `Allow` is a list of origins where the feature is allowed.
1582 `Block` is a list of origins where the feature is not allowed.
1584 `BlockNewRequests` determines whether or not new requests can be made for the feature.
1586 `Locked` prevents the user from changing preferences for the feature.
1588 **Compatibility:** Firefox 62, Firefox ESR 60.2\
1589 **CCK2 Equivalent:** N/A\
1590 **Preferences Affected:** `permissions.default.camera`,`permissions.default.microphone`,`permissions.default.geo`,`permissions.default.desktop-notification`
1594 Software\Policies\Mozilla\Firefox\Permissions\Camera\Allow\1 = "https://example.org"
1595 Software\Policies\Mozilla\Firefox\Permissions\Camera\Block\1 = "https://example.edu"
1596 Software\Policies\Mozilla\Firefox\Permissions\Camera\BlockNewRequests = 0x1 | 0x0
1597 Software\Policies\Mozilla\Firefox\Permissions\Camera\Locked = 0x1 | 0x0
1598 Software\Policies\Mozilla\Firefox\Permissions\Microphone\Allow\1 = "https://example.org"
1599 Software\Policies\Mozilla\Firefox\Permissions\Microphone\Block\1 = "https://example.edu"
1600 Software\Policies\Mozilla\Firefox\Permissions\Microphone\BlockNewRequests = 0x1 | 0x0
1601 Software\Policies\Mozilla\Firefox\Permissions\Microphone\Locked = 0x1 | 0x0
1602 Software\Policies\Mozilla\Firefox\Permissions\Location\Allow\1 = "https://example.org"
1603 Software\Policies\Mozilla\Firefox\Permissions\Location\Block\1 = "https://example.edu"
1604 Software\Policies\Mozilla\Firefox\Permissions\Location\BlockNewRequests = 0x1 | 0x0
1605 Software\Policies\Mozilla\Firefox\Permissions\Location\Locked = 0x1 | 0x0
1606 Software\Policies\Mozilla\Firefox\Permissions\Notifications\Allow\1 = "https://example.org"
1607 Software\Policies\Mozilla\Firefox\Permissions\Notifications\Block\1 = "https://example.edu"
1608 Software\Policies\Mozilla\Firefox\Permissions\Notifications\BlockNewRequests = 0x1 | 0x0
1609 Software\Policies\Mozilla\Firefox\Permissions\Notifications\Locked = 0x1 | 0x0
1614 <key>Permissions</key>
1620 <string>https://example.org</string>
1624 <string>https://example.edu</string>
1626 <key>BlockNewRequests</key>
1631 <key>Microphone</key>
1635 <string>https://example.org</string>
1639 <string>https://example.edu</string>
1641 <key>BlockNewRequests</key>
1650 <string>https://example.org</string>
1654 <string>https://example.edu</string>
1656 <key>BlockNewRequests</key>
1661 <key>Notifications</key>
1665 <string>https://example.org</string>
1669 <string>https://example.edu</string>
1671 <key>BlockNewRequests</key>
1685 "Allow": ["https://example.org"],
1686 "Block": ["https://example.edu"],
1687 "BlockNewRequests": true | false,
1688 "Locked": true | false
1691 "Allow": ["https://example.org"],
1692 "Block": ["https://example.edu"],
1693 "BlockNewRequests": true | false,
1694 "Locked": true | false
1697 "Allow": ["https://example.org"],
1698 "Block": ["https://example.edu"],
1699 "BlockNewRequests": true | false,
1700 "Locked": true | false
1703 "Allow": ["https://example.org"],
1704 "Block": ["https://example.edu"],
1705 "BlockNewRequests": true | false,
1706 "Locked": true | false
1713 This policy allows you to specify proxy settings. These settings correspond to the connection settings in Firefox preferences.
1714 To specify ports, append them to the hostnames with a colon (:).
1716 `Mode` is the proxy method being used.
1718 `Locked` is whether or not proxy settings can be changed.
1720 `HTTPProxy` is the HTTP proxy server.
1722 `UseHTTPProxyForAllProtocols` is whether or not the HTTP proxy should be used for all other proxies.
1724 `SSLProxy` is the SSL proxy server.
1726 `FTPProxy` is the FTP proxy server.
1728 `SOCKSProxy` is the SOCKS proxy server
1730 `SOCKSVersion` is the SOCKS version (4 or 5)
1732 `Passthrough` is list of hostnames or IP addresses that will not be proxied. Use `<local>` to bypass proxying for all hostnames which do not contain periods.
1734 `AutoConfigURL` is a URL for proxy configuration (only used if Mode is autoConfig).
1736 | `AutoLogin` means do not prompt for authentication if password is saved.
1738 | `UseProxyForDNS` to use proxy DNS when using SOCK v5.
1740 **Compatibility:** Firefoox 60, Firefox ESR 60\
1741 **CCK2 Equivalent:** `networkProxy*`\
1742 **Preferences Affected:** `network.proxy.type`,`network.proxy.autoconfig_url`,`network.proxy.socks_remote_dns`,`signon.autologin.proxy`,`network.proxy.socks_version`,`network.proxy.no_proxies_on`,`network.proxy.share_proxy_settings`,`network.proxy.http`,`network.proxy.http_port`,`network.proxy.ftp`,`network.proxy.ftp_port`,`network.proxy.ssl`,`network.proxy.ssl_port`,`network.proxy.socks`,`network.proxy.socks_port`
1746 Software\Policies\Mozilla\Firefox\Proxy\Mode = "none", "system", "manual", "autoDetect", "autoConfig"
1747 Software\Policies\Mozilla\Firefox\Proxy\Locked = 0x1 | 0x0
1748 Software\Policies\Mozilla\Firefox\=Proxy\HTTPProxy = https://httpproxy.example.com
1749 Software\Policies\Mozilla\Firefox\Proxy\UseHTTPProxyForAllProtocols = 0x1 | 0x0
1750 Software\Policies\Mozilla\Firefox\Proxy\SSLProxy = https://sslproxy.example.com
1751 Software\Policies\Mozilla\Firefox\Proxy\FTPProxy = https://ftpproxy.example.com
1752 Software\Policies\Mozilla\Firefox\Proxy\SOCKSProxy = https://socksproxy.example.com
1753 Software\Policies\Mozilla\Firefox\Proxy\SOCKSVersion = 0x4 | 0x5
1754 Software\Policies\Mozilla\Firefox\Proxy\Passthrough = <local>
1755 Software\Policies\Mozilla\Firefox\Proxy\AutoConfigURL = URL_TO_AUTOCONFIG
1756 Software\Policies\Mozilla\Firefox\Proxy\AutoLogin = 0x1 | 0x0
1757 Software\Policies\Mozilla\Firefox\Proxy\UseProxyForDNS = 0x1 | 0x0
1765 <string>none | system | manual | autoDetect| autoConfig</string>
1768 <key>HTTPProxy</key>
1769 <string>https://httpproxy.example.com</string>
1770 <key>UseHTTPProxyForAllProtocols</key>
1773 <string>https://sslproxy.example.com</string>
1775 <string>https://ftpproxy.example.com</string>
1776 <key>SOCKSProxy</key>
1777 <string>https://socksproxy.example.com</string>
1778 <key>SOCKSVersion</key>
1779 <string>4 | 5</string>
1780 <key>Passthrough</key>
1781 <string><local>></string>
1782 <key>AutoConfigURL</key>
1783 <string>URL_TO_AUTOCONFIG</string>
1784 <key>AutoLogin</key>
1786 <key>UseProxyForDNS</key>
1796 "Mode": "none", "system", "manual", "autoDetect", "autoConfig",
1797 "Locked": [true, false],
1798 "HTTPProxy": "hostname",
1799 "UseHTTPProxyForAllProtocols": [true, false],
1800 "SSLProxy": "hostname",
1801 "FTPProxy": "hostname",
1802 "SOCKSProxy": "hostname",
1803 "SOCKSVersion": 4 | 5
1804 "Passthrough": "<local>",
1805 "AutoConfigURL": "URL_TO_AUTOCONFIG",
1806 "AutoLogin": [true, false],
1807 "UseProxyForDNS": [true, false]
1812 ### RequestedLocales
1813 Set the the list of requested locales for the application in order of preference. It will cause the corresponding language pack to become active.
1815 **Compatibility:** Firefox 64, Firefox ESR 60.4\
1816 **CCK2 Equivalent:** N/A\
1817 **Preferences Affected:** N/A
1820 Software\Policies\Mozilla\Firefox\RequestedLocales\1 = "de"
1821 Software\Policies\Mozilla\Firefox\RequestedLocales\2 = "en-US"
1826 <key>RequestedLocales</key>
1829 <string>en-US</string>
1837 "RequestedLocales": ["de", "en-US"]
1841 ### SanitizeOnShutdown
1842 Clear all data on shutdown, including Browsing & Download History, Cookies, Active Logins, Cache, Form & Search History, Site Preferences and Offline Website Data.
1844 **Compatibility:** Firefox 60, Firefox ESR 60\
1845 **CCK2 Equivalent:** N/A\
1846 **Preferences Affected:** `privacy.sanitize.sanitizeOnShutdown,privacy.clearOnShutdown.cache,privacy.clearOnShutdown.cookies,privacy.clearOnShutdown.downloads,privacy.clearOnShutdown.formdata,privacy.clearOnShutdown.history,privacy.clearOnShutdown.sessions,privacy.clearOnShutdown.siteSettings,privacy.clearOnShutdown.offlineApps`
1849 Software\Policies\Mozilla\Firefox\SanitizeOnShutdown = 0x1 | 0x0
1854 <key>SanitizeOnShutdown</key>
1862 "SanitizeOnShutdown": true | false
1867 Sets whether or not search bar is displayed.
1869 **Compatibility:** Firefox 60, Firefox ESR 60\
1870 **CCK2 Equivalent:** `showSearchBar`\
1871 **Preferences Affected:** N/A
1875 Software\Policies\Mozilla\Firefox\SearchBar = "unified" | "separate"
1880 <key>SearchBar</key>
1881 <string>unified | separate</string>
1889 "SearchBar": "unified" | "separate"
1895 This policy blocks websites from being visited. The parameters take an array of Match Patterns, as documented in https://developer.mozilla.org/en-US/Add-ons/WebExtensions/Match_patterns. Only http/https addresses are supported at the moment. The arrays are limited to 1000 entries each.
1897 **Compatibility:** Firefox 60, Firefox ESR 60\
1898 **CCK2 Equivalent:** N/A\
1899 **Preferences Affected:** N/A
1903 Software\Policies\Mozilla\Firefox\WebsiteFilters\Block\1 = "<all_urls>"
1904 Software\Policies\Mozilla\Firefox\WebsiteFilters\Exceptions\1 = "http://example.org/*"
1909 <key>WebsiteFilter</key>
1913 <string><all_urls></string>
1915 <key>Exceptions</key>
1917 <string>http://example.org/*</string>
1928 "Block": ["<all_urls>"],
1929 "Exceptions": ["http://example.org/*"]
1938 ### SearchEngines (This policy is only available on the ESR.)
1940 ### SearchEngines | Default
1942 This policy allows you to set the default search engine. This policy is only available on the ESR.
1944 **Compatibility:** Firefox ESR 60\
1945 **CCK2 Equivalent:** `defaultSearchEngine`\
1946 **Preferences Affected:** N/A
1950 Software\Policies\Mozilla\Firefox\SearchEngines\Default = NAME_OF_SEARCH_ENGINE
1955 <key>SearchEngines</key>
1958 <string>NAME_OF_SEARCH_ENGINE</string>
1967 "Default": "NAME_OF_SEARCH_ENGINE"
1972 ### SearchEngines | PreventInstalls
1974 Prevent installing search engines from webpages.
1976 **Compatibility:** Firefox ESR 60\
1977 **CCK2 Equivalent:** `disableSearchEngineInstall`\
1978 **Preferences Affected:** N/A
1982 Software\Policies\Mozilla\Firefox\SearchEngines\PreventInstalls = 0x1 | 0x0
1987 <key>SearchEngines</key>
1989 <key>PreventInstalls</key>
1999 "PreventInstalls": true | false
2004 ### SearchEngines | Remove
2006 This policy allows you to hide built-in search engines. This policy is only available on the ESR.
2008 **Compatibility:** Firefox ESR 60\
2009 **CCK2 Equivalent:** `removeDefaultSearchEngines` (removed all built-in engines)\
2010 **Preferences Affected:** N/A
2014 Software\Policies\Mozilla\Firefox\SearchEngines\Remove\1 = NAME_OF_SEARCH_ENGINE
2019 <key>SearchEngines</key>
2023 <string>NAME_OF_SEARCH_ENGINE</string>
2033 "Remove": ["NAME_OF_SEARCH_ENGINE"]
2038 ### SearchEngines | Add
2040 This policy allows you to add up to five new search engines. This policy is only available on the ESR. `Name` and `URLTemplate` are required.
2043 `Name` is the name of the search engine.
2045 `URLTemplate` is the search URL with {searchTerms} to substitute for the search term.
2047 `Method` is either GET or POST
2049 `IconURL` is a URL for the icon to use.
2051 `Alias` is a keyword to use for the engine.
2053 `Description` is a description of the search engine.
2055 `SuggestURLTemplate` is a search suggestions URL with {searchTerms} to substitute for the search term.
2057 **Compatibility:** Firefox ESR 60\
2058 **CCK2 Equivalent:** `config.searchplugins`\
2059 **Preferences Affected:** N/A
2062 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Name =
2063 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\URLTemplate =
2064 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Method =
2065 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\IconURL =
2066 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Alias =
2067 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\Description =
2068 Software\Policies\Mozilla\Firefox\SearchEngines\Add\1\SuggestURLTemplate =
2073 <key>SearchEngines</key>
2079 <string>Example1</string>
2080 <key>URLTemplate</key>
2081 <string>https://www.example.org</string>
2083 <string>https://www.example.org/favicon.ico</string>
2085 <string>toolbar</string>
2087 <string>Example1Folder</string>
2088 <key>Description</key>
2089 <string>Example1Folder</string>
2091 <string>SuggestURLTemplate</string>
2105 "URLTemplate": "URL including {searchTerms} to substitute for the terms",
2106 "Method": ["GET", "POST"],
2107 "IconURL": "URL to icon",
2108 "Alias": "Alias that can be used to access the engine",
2109 "Description": "Description",
2110 "SuggestURLTemplate": "URL for suggestions using {searchTerms}"
2119 Install PKCS #11 modules.
2121 **Compatibility:** Firefox 64, Firefox ESR 60.4\
2122 **CCK2 Equivalent:** `certs.devices`\
2123 **Preferences Affected:** N/A
2127 Software\Policies\Mozilla\Firefox\SecurityDevices\NAME_OF_DEVICE = PATH_TO_LIBRARY_FOR_DEVICE
2132 <key>SecurityDevices</key>
2134 <key>NAME_OF_DEVICE</key>
2135 <string>PATH_TO_LIBRARY_FOR_DEVICE</string>
2144 "SecurityDevices": {
2145 "NAME_OF_DEVICE": "PATH_TO_LIBRARY_FOR_DEVICE"
2152 Set and lock the maximum version of TLS.
2154 **Compatibility:** Firefox 66, Firefox ESR 60.6\
2155 **CCK2 Equivalent:** N/A\
2156 **Preferences Affected:** `security.tls.version.max`
2160 Software\Policies\Mozilla\Firefox\SSLVersionMax = "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
2165 <key>SSLVersionMax</key>
2166 <string>tls1 | tls1.1 | tls1.2 | tls1.3</string>
2174 "SSLVersionMax": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
2180 Set and lock the minimum version of TLS.
2182 **Compatibility:** Firefox 66, Firefox ESR 60.6\
2183 **CCK2 Equivalent:** N/A\
2184 **Preferences Affected:** `security.tls.version.min`
2188 Software\Policies\Mozilla\Firefox\SSLVersionMin = "tls1" | "tls1.1" | "tls1.2" | "tls1.3"
2193 <key>SSLVersionMin</key>
2194 <string>tls1 | tls1.1 | tls1.2 | tls1.3</string>
2202 "SSLVersionMin": "tls1" | "tls1.1" | "tls1.2" | "tls1.3"