577
edits
Changes
→Disabling Updates: Describe the different methods of disabling updates
</source>
==Disabling Disable Automatic Updates==
See [https://support.google.com/chrome/a/answer/187207 Auto-updates] and [http://support.google.com/installer/bin/answer.py?hl=en&answer=146164#Registry_SettingsGoogle Update for Enterprise].
=== Windows Registry===
==== Update policy override policy ====
Prevent updates for specific application(s), using the "Update policy override" policy for that specific application, as defined by its <AppID>:
HKLM\SOFTWARE\Policies\Google\Update\Update<AppID>=REG_DWORD:0
For example:
HKLM\SOFTWARE\Policies\Google\Update\Update{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}=REG_DWORD:0
==== Update policy override default policy ====
Prevent any application that uses Google Update from being automatically updated:
HKLM\SOFTWARE\Policies\Google\Update\UpdateDefault=REG_DWORD:0
=== WPKG ===
==== Update policy override policy ====
<source lang="xml">
<variable name="PKG_KEY" value="HKLM\SOFTWARE\Policies\Google\Update"/>
<variable name="PKG_VALUE" value="Update{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}"/>
<variable name="PKG_DATA" value="0"/>
</package>
</source>
== Note for Remote Desktop Services ==