Skip to content

Commit

Permalink
AppUpdatePin documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaply committed Sep 20, 2022
1 parent bfdc3c2 commit 9daef2e
Show file tree
Hide file tree
Showing 11 changed files with 85 additions and 0 deletions.
44 changes: 44 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Policies can be specified using the [Group Policy templates on Windows](https://
| **[`3rdparty`](#3rdparty)** | Set policies that WebExtensions can access via chrome.storage.managed.
| **[`AllowedDomainsForApps`](#alloweddomainsforapps)** | Define domains allowed to access Google Workspace.
| **[`AppAutoUpdate`](#appautoupdate)** | Enable or disable automatic application update.
| **[`AppUpdatePin`](#appupdatepin)** | Prevent Firefox from being updated beyond the specified version.
| **[`AppUpdateURL`](#appupdateurl)** | Change the URL for application update.
| **[`Authentication`](#authentication)** | Configure sites that support integrated authentication.
| **[`AutoLaunchProtocolsFromOrigins`](#autolaunchprotocolsfromorigins)** | Define a list of external protocols that can be used from listed origins without prompting the user.
Expand Down Expand Up @@ -250,6 +251,49 @@ Value (string):
}
}
```
### AppUpdatePin

Prevent Firefox from being updated beyond the specified version.

You can specify the any version as ```xx.``` and Firefox will be updated with all minor versions, but will not be updated beyond the major version.

You can also specify the version as ```xx.xx``` and Firefox will be updated with all patch versions, but will not be updated beyond the minor version.

You should specify a version that exists or is guaranteed to exist. If you specify a version that doesn't end up existing, Firefox will update beyond that version.

**Compatibility:** Firefox 102,\
**CCK2 Equivalent:** N/A\
**Preferences Affected:** N/A

#### Windows (GPO)
```
Software\Policies\Mozilla\Firefox\AppUpdatePin = "106."
```
#### Windows (Intune)
OMA-URI:
```
./Device/Vendor/MSFT/Policy/Config/Firefox~Policy~firefox/AppUpdatePin
```
Value (string):
```
<enabled/>
<data id="AppUpdatePin" value="106."/>
```
#### macOS
```
<dict>
<key>AppUpdatePin</key>
<string>106.</string>
</dict>
```
#### policies.json
```
{
"policies": {
"AppUpdatePin": "106."
}
}
```
### AppUpdateURL

Change the URL for application update if you are providing Firefox updates from a custom update server.
Expand Down
2 changes: 2 additions & 0 deletions mac/org.mozilla.firefox.plist
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
<string>managedfirefox.com,example.com</string>
<key>AppAutoUpdate</key>
<true/>
<key>AppUpdatePin</key>
<string>106.</string>
<key>AppUpdateURL</key>
<string>https://www.example.com/update.xml</string>
<key>Authentication</key>
Expand Down
4 changes: 4 additions & 0 deletions windows/de-DE/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -944,6 +944,10 @@ Wenn diese Richtlinieneinstellung deaktiviert oder nicht konfiguriert ist, start
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">Wenn diese Richtlinieneinstellung aktiviert ist, ist die Einstellung auf true gesperrt. Wenn diese Richtlinieneinstellung deaktiviert ist, ist die Einstellung auf false gesperrt.

Für eine Beschreibung der Einstellung, siehe:
Expand Down
4 changes: 4 additions & 0 deletions windows/en-US/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">If this policy is enabled, the preference is locked to true. If this policy is disabled, the preference is locked to false.

For a description of the preference, see:
Expand Down
4 changes: 4 additions & 0 deletions windows/es-ES/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">Si esta política está habilitada, la preferencia se bloquea en true. Si esta política está deshabilitada, la preferencia está bloqueada en false.

Para una descripción de la preferencia, visita:
Expand Down
7 changes: 7 additions & 0 deletions windows/firefox.admx
Original file line number Diff line number Diff line change
Expand Up @@ -3891,5 +3891,12 @@
<decimal value="0"/>
</disabledValue>
</policy>
<policy name="AppUpdatePin" class="Both" displayName="$(string.AppUpdatePin)" explainText="$(string.AppUpdatePin_Explain)" key="Software\Policies\Mozilla\Firefox" presentation="$(presentation.String)">
<parentCategory ref="firefox" />
<supportedOn ref="SUPPORTED_FF102" />
<elements>
<text id="String" valueName="AppUpdatePin" required="true" />
</elements>
</policy>
</policies>
</policyDefinitions>
4 changes: 4 additions & 0 deletions windows/fr-FR/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -940,6 +940,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">Si cette stratégie est activée, la préférence est verrouillée sur true. Si cette stratégie est désactivée, la préférence est verrouillée sur false.

Pour une description de la préférence, voir:
Expand Down
4 changes: 4 additions & 0 deletions windows/it-IT/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -942,6 +942,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">Se questo criterio è abilitato, la preferenza è impostata a Vero e resa non modificabile. Se questo criterio è disabilitato, la preferenza è impostata a Falso e resa non modificabile.

Per una descrizione della preferenza, si veda:
Expand Down
4 changes: 4 additions & 0 deletions windows/ru-RU/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain"> Если эта политика включена, предпочтение заблокировано на true. Если эта политика отключена, предпочтение заблокировано на false.

Описание предпочтения см .:
Expand Down
4 changes: 4 additions & 0 deletions windows/zh-CN/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">若启用此原则,偏好设定将锁定为 true。 若禁用此原则,偏好设定则锁定为false。

若需要偏好设置的详细说明,请参考:
Expand Down
4 changes: 4 additions & 0 deletions windows/zh-TW/firefox.adml
Original file line number Diff line number Diff line change
Expand Up @@ -939,6 +939,10 @@ If this policy is disabled or not configured, Firefox will to the download folde
<string id="GoToIntranetSiteForSingleWordEntryInAddressBar_Explain">If this policy is enabled, typing single word entries in the address bar will attempt to navigate to intranet sites first, falling back to search if the DNS request fails.

If this policy is disabled or not configured, typing single word entries in the address bar will search.</string>
<string id="AppUpdatePin">Pin updates to a specific version</string>
<string id="AppUpdatePin_Explain">If this policy is enabled, you can specify a Firefox version as xx. or xx.xx. and Firefox will not be updated beyond that major or minor version.

If this policy is disabled or not configured, Firefox will update normally.</string>
<string id="Preferences_Boolean_Explain">若啟用此原則,偏好設定��鎖定為 true。若停用此原則,偏好設定則鎖定為 false。

若需要偏好設定的詳細說明,請參考:
Expand Down

0 comments on commit 9daef2e

Please sign in to comment.