1 Policies can either be specified using the Group Policy templates 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/Content/Resources/distribution.
3 The content of the JSON file should look like this:
11 Policies are documented below. Note that even though comments are used in this file for documentation, comments are not allowed for JSON files.
13 This policy is for configuring sites that support integrated authentication. See https://developer.mozilla.org/en-US/docs/Mozilla/Integrated_authentication for more information.
18 "SPNEGO": ["mydomain.com", "https://myotherdomain.com"],
19 "Delegated": ["mydomain.com", "https://myotherdomain.com"],
20 "NTLM": ["mydomain.com", "https://myotherdomain.com"]
26 This policy removes access to about:addons.
30 "BlockAboutAddons": true
35 This policy removes access to about:config.
39 "BlockAboutConfig": true
43 ### BlockAboutProfiles
44 This policy removes access to about:profiles.
48 "BlockAboutProfiles": true
53 This policy removes access to about:support.
57 "BlockAboutSupport": true
60 ### BlockSetDesktopBackground
61 This policy removes the "Set As Desktop Background..." menuitem when right clicking on an image.
65 "BlockAboutSupport": true
70 This is a Windows only policy that tells Firefox to read certificates from the Windows certificate store.
75 "ImportEnterpriseRoots": [true|false]
81 This policy controls various settings related to cookies.
86 "Allow": ["http://example.org/"], /* Domains where cookies are always allowed */
87 "Block": ["http://example.edu/"], /* Domains where cookies are always blocked */
88 "Default": [true|false], /* This sets the default value for "Accept cookies from websites" */
89 "AcceptThirdParty": ["all", "none", "from-visited"], /* This sets the default value for "Accept third-party cookies" */
90 "ExpireAtSessionEnd": [true|false], /* This determines when cookies expire */
91 "Locked": [true|false] /* If this is true, cookies preferences can't be changed */
96 ### CreateMasterPassword
97 This policy removes the master password functionality.
101 "CreateMasterPassword": false
106 This policy turns off application updates.
110 "DisableAppUpdate": true
114 ### DisableBuiltinPDFViewer
115 This policy disables the built in PDF viewer. PDF files are downloaded and sent externally.
119 "DisableBuiltinPDFViewer": true
123 ### DisableDeveloperTools
124 This policy removes access to all developer tools.
128 "DisableDeveloperTools": true
132 ### DisableFeedbackCommands
133 This policy disables the menus for reporting sites (Submit Feedback, Report Deceptive Site)
137 "DisableFeedbackCommands": true
141 ### DisableFirefoxScreenshots
142 This policy removes access to Firefox Screenshots
146 "DisableFirefoxScreenshots": true
150 ### DisableFirefoxAccounts
151 This policy disables Sync
155 "DisableFirefoxAccounts": true
159 ### DisableFirefoxStudies
160 This policy disables Firefox studies (Shield)
164 "DisableFirefoxAccounts": true
168 ### DisableForgetButton
169 This policy disables the "Forget" button
173 "DisableForgetButton": true
177 ### DisableFormHistory
178 This policy turns off the browser.formfill.enable preferences
182 "DisableFormHistory": true
187 This policy turns off Pocket
191 "DisablePocket": true
195 ### DisablePrivateBrowsing
196 This policy removes access to private browsing
200 "DisablePrivateBrowsing": true
204 ### DisableProfileRefresh
205 This policy disables the Refresh Firefox button on about:support and support.mozilla.org.
209 "DisableProfileRefresh": true
214 This policy disables safe mode on Windows only
218 "DisableSafeMode": true
222 ### DisableSecurityBypass
223 This policy prevents the user from bypassign security in certain cases.
227 "DisableSecurityBypass": {
228 "InvalidCertificate": [true|false], /* Prevents adding an exception when an invalid certificate is shown */
229 "SafeBrowsing": [true|false] /* Prevents selecting "ignore the risk" and visiting a harmful site anyway */
234 ### DisableSysAddonUpdate
235 This policy prevents system add-ons from being updated or installed.
239 "DisableSysAddonUpdate": true
244 This policy prevents the upload of telemetry data. Mozilla strongly recommends that you do NOT disable telemetry if you do not have a business need to do so.
248 "DisableTelemetry": true
252 ### DisplayBookmarksToolbar
253 This policy turns on the bookmarks toolbar by default. A user can still turn it off and it will stay off.
257 "DisplayBookmarksToolbar": true
262 This policy turns on the menubar by default. A user can still turn it off and it will stay off.
266 "DisplayMenuBar": true
270 ### DontCheckDefaultBrowser
271 This policy stops Firefox from checking if it is the default browser at startup.
275 "DontCheckDefaultBrowser": true
279 ### EnableTrackingProtection
280 This policy affects tracking protection.
282 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.
284 If Value is set to false, tracking protection is disabled and locked in both the browser and private browsing.
286 If Value is set to true, private browsing is enabled by default in both the browser and private browsing and you can choose set the Locked value if you want to prevent the user from changing it.
290 "EnableTrackingProtection": {
291 "Value": [true, false],
292 "Locked": [true, false]
296 This policy controls the install, uninstall and locking of extensions. Locked extensions cannot be disabled or uninstalled.
297 For Install, you can specify a list of URLs or paths.
298 For Uninstall and Locked, you specify extension IDs.
303 "Install": ["https://addons.mozilla.org/firefox/downloads/somefile.xpi", "//path/to/xpi"]
304 "Uninstall": ["addon_id@mozilla.org"],
305 "Locked": ["addon_id@mozilla.org"]
308 ### NoDefaultBookmarks
309 Don't create the default bookmarks or the Smart Bookmarks (Most Visited, Recent Tags). Note: this policy is only effective if used before the first run of the profile.
313 "NoDefaultBookmarks": true
317 ### RememberPasswords
318 This policy sets the signon.rememberSignons preference. It can either be enabled or disabled.
322 "RememberPasswords": true
327 This policy sets the default homepage value. It can also be used to lock the homepage and add additional homepages.
332 "URL": "http://example.com/",
334 "Additional": ["http://example.org/",
335 "http://example.edu/"]
341 This policy sets domains for which popups are allowed
346 "Allow": ["http://example.org/",
347 "http://example.edu/"]
353 This policy sets domains that can install extensions, as well as the default behavior.
358 "Allow": ["http://example.org/",
359 "http://example.edu/"]
360 "Default": [true|false], /* If this is set to false, add-ons cannot be installed by the user */
366 This policy sets the behavior of Flash on the specified domains, as well as the default behavior.
371 "Allow": ["http://example.org/"], /* Sites on the allow list do not override Flash being completely disabled */
372 "Block": ["http://example.edu/"],
373 "Default": [true|false], /* If this is set to true, flash is always enabled. If it is set to false, Flash is never enabled */
374 "Locked": [true|false]
379 ### OverrideFirstRunPage
380 This policy allowed you to override the first run page. If you leave the URL blank, the first run page will not be displayed.
384 "OverrideFirstRunPage": "http://example.org"
389 This policy allows you to specify bookmarks. You can have any number of bookmarks although only ten are specified in the ADMX file.
390 Placement can be specified as either toolbar or menu. If a folder is specified, it is automatically created and bookmarks with the
391 same folder name are grouped together.
398 "URL": "http://example.org",
399 "Favicon": "http://example.com/favicon.ico",
400 "Placement": ["toolbar", "menu"],
401 "Folder": "FolderName"
408 This policy allows you to specify proxy settings. These settings correspond to the connection settings in Firefox preferences.
409 To specify ports, append them to the hostnames with a colon (:). If Locked is set to true, the values can't be changed by the user.
413 "Mode": ["none", "system", "manual", "autoDetect", "autoConfig"]
414 "Locked": [true, false]
415 "HTTPProxy": "hostname",
416 "UseHTTPProxyForAllProtocols": [true, false]
417 "SSLProxy": "hostname",
418 "FTPProxy": "hostname",
419 "SOCKSProxy": "hostname",
420 "SOCKSVersion": [4, 5],
421 "Passthrough": "List of passthrough addresses/domains",
422 "AutoConfigURL": "URL_TO_AUTOCONFIG",
423 "AutoLogin": [true, false],
424 "UseProxyForDNS": [true, false]