X-Git-Url: https://git.p6c8.net/policy-templates.git/blobdiff_plain/8b3e53a0581ca228718ba1426a8415f8bb961b1f..decd497a004c8d98f02c5e5425ad56a079aefd9a:/README.md diff --git a/README.md b/README.md index 58071fc..8bca71d 100644 --- a/README.md +++ b/README.md @@ -93,6 +93,7 @@ Policies can be specified using the [Group Policy templates on Windows](https:// | **[`SearchEngines -> Add`](#searchengines--add)** | Add new search engines. | **[`SearchSuggestEnabled`](#searchsuggestenabled)** | Enable search suggestions. | **[`SecurityDevices`](#securitydevices)** | Install PKCS #11 modules. +| **[`ShowHomeButton`](#showhomebutton)** | Show the home button on the toolbar. | **[`SSLVersionMax`](#sslversionmax)** | Set and lock the maximum version of TLS. | **[`SSLVersionMin`](#sslversionmin)** | Set and lock the minimum version of TLS. | **[`SupportMenu`](#supportmenu)** | Add a menuitem to the help menu for specifying support information. @@ -5023,6 +5024,43 @@ Value (string): } } ``` +### ShowHomeButton +Show the home button on the toolbar. + +Future versions of Firefox will not show the home button by default. + +**Compatibility:** Firefox 88, Firefox ESR 78.10\ +**CCK2 Equivalent:** N/A\ +**Preferences Affected:** N/A + +#### Windows (GPO) +``` +Software\Policies\Mozilla\Firefox\ShowHomeButton = 0x1 | 0x0 +``` +#### Windows (Intune) +OMA-URI: +``` +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/ShowHomeButton +``` +Value (string): +``` + or +``` +#### macOS +``` + + ShowHomeButton + | + +``` +#### policies.json +``` +{ + "policies": { + "ShowHomeButton": true | false + } +} +``` ### SSLVersionMax Set and lock the maximum version of TLS. @@ -5154,17 +5192,19 @@ Value (string): Prevent Firefox from messaging the user in certain situations. -`WhatsNew` Remove the "What's New" icon and menuitem. (Firefox 75 only) +`WhatsNew` Remove the "What's New" icon and menuitem. + +`ExtensionRecommendations` If false, don't recommend extensions while the user is visiting web pages. -`ExtensionRecommendations` Don't recommend extensions while the user is visiting web pages. +`FeatureRecommendations` IF false, don't recommend browser features. -`FeatureRecommendations` Don't recommend browser features. +`UrlbarInterventions` If false, Don't offer Firefox specific suggestions in the URL bar. -`UrlbarInterventions` Don't offer Firefox specific suggestions in the URL bar. (Firefox 75 only) +`SkipOnboarding` If true, don't show onboarding messages on the new tab page. **Compatibility:** Firefox 75, Firefox ESR 68.7\ **CCK2 Equivalent:** N/A\ -**Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features` +**Preferences Affected:** `browser.messaging-system.whatsNewPanel.enabled`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.addons`,`browser.newtabpage.activity-stream.asrouter.userprefs.cfr.features,browser.aboutwelcome.enabled` #### Windows (GPO) ``` @@ -5172,6 +5212,7 @@ Software\Policies\Mozilla\Firefox\UserMessaging\WhatsNew = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\UserMessaging\ExtensionRecommendations = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\UserMessaging\FeatureRecommendations = 0x1 | 0x0 Software\Policies\Mozilla\Firefox\UserMessaging\UrlbarInterventions = 0x1 | 0x0 +Software\Policies\Mozilla\Firefox\UserMessaging\SkipOnboarding = 0x1 | 0x0 ``` #### Windows (Intune) OMA-URI: @@ -5180,6 +5221,7 @@ OMA-URI: ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_ExtensionRecommendations ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_FeatureRecommendations ./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_UrlbarInterventions +./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/UserMessaging_SkipOnboarding ``` Value (string): ``` @@ -5198,6 +5240,8 @@ Value (string): | UrlbarInterventions | + SkipOnboarding + | ``` @@ -5210,6 +5254,7 @@ Value (string): "ExtensionRecommendations": true | false, "FeatureRecommendations": true | false, "UrlbarInterventions": true | false + "SkipOnboarding": true | false } } }