]> git.p6c8.net - policy-templates.git/commitdiff
Implement DisableProfileRefresh policy
authorMichael Kaply <consulting@kaply.com>
Thu, 5 Apr 2018 20:47:23 +0000 (15:47 -0500)
committerMichael Kaply <consulting@kaply.com>
Thu, 5 Apr 2018 20:47:23 +0000 (15:47 -0500)
README.md
windows/en-US/firefox.adml
windows/firefox.admx

index 8dd5cbf27a79fbefcc834249d24f854484701158..b59275a7f4a7730ca1b2b38c07dafcadb5acbb0f 100644 (file)
--- a/README.md
+++ b/README.md
@@ -200,6 +200,14 @@ This policy removes access to private browsing
     "DisablePrivateBrowsing": true
   }
 }
+### DisableProfileRefresh
+This policy disables the Refresh Firefox button on about:support and support.mozilla.org.
+```
+{
+  "policies": {
+    "DisableProfileRefresh": true
+  }
+}
 ```
 ### DisableSafeMode
 This policy disables safe mode on Windows only
index 620228d432012027245b2ec69789fc1472377a86..62d11731ec41a65c0d57d28b7e855512a660373d 100644 (file)
@@ -63,6 +63,10 @@ If this policy is not configured or disabled, the &quot;Forget&quot; button is a
       <string id="DisablePocket_Explain">Prevents ability to save webpages to Pocket.</string>
       <string id="DisablePrivateBrowsing">Disable Private Browsing</string>
       <string id="DisablePrivateBrowsing_Explain">Disables private browsing.</string>
+      <string id="DisableProfileRefresh">Disable Profile Refresh</string>
+      <string id="DisableProfileRefresh_Explain">If this policy is enabled, the &quot;Refresh Firefox&quot; button is not available on the about:support page or on support.mozilla.org.
+
+If this policy is not configured or disabled, the &quot;Refresh Firefox&quot; button is available.</string>
       <string id="DisableSafeMode">Disable Safe Mode</string>
       <string id="DisableSafeMode_Explain">Prevents ability to restart in safe mode.</string>
       <string id="DisableSysAddonUpdate">Disable System Addon Updates</string>
index c7bce5626eb118cbe05f8d6e576c870de79da1cc..7be7fce474bd6a57bca9430b427d525b90ce09ab 100644 (file)
         <decimal value="0"/>
       </disabledValue>
     </policy>
+    <policy name="DisableProfileRefresh" class="Both" displayName="$(string.DisableProfileRefresh)" explainText="$(string.DisableProfileRefresh_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableProfileRefresh">
+      <parentCategory ref="firefox"/>
+      <supportedOn ref="SUPPORTED_WINXPSP2"/>
+      <enabledValue>
+        <decimal value="1"/>
+      </enabledValue>
+      <disabledValue>
+        <decimal value="0"/>
+      </disabledValue>
+    </policy>
     <policy name="DisableSafeMode" class="Both" displayName="$(string.DisableSafeMode)" explainText="$(string.DisableSafeMode_Explain)" key="Software\Policies\Mozilla\Firefox" valueName="DisableSafeMode">
       <parentCategory ref="firefox"/>
       <supportedOn ref="SUPPORTED_WINXPSP2"/>

patrick-canterino.de