Changes
google chrome: add example package for disabling updates
<remove cmd='"%USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application\1.0.154.59\Installer\setup.exe" --uninstall --force-uninstall'/>
</package>
</source>
==Disabling Updates==
See [http://support.google.com/installer/bin/answer.py?hl=en&answer=146164#Registry_Settings].
<source lang="xml">
<package id="google-chrome-pol-no.update"
name="Google Chrome (Policy) - Disable updates"
revision="1"
reboot="false"
priority="1">
<depends package-id="google-chrome"/>
<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"/>
<check type="registry" condition="equals" path="%PKG_KEY%\%PKG_VALUE%" value="%PKG_DATA%" />
<install cmd='reg add %PKG_KEY% /v %PKG_VALUE% /d %PKG_DATA% /t REG_DWORD /f'/>
<upgrade include="install" />
<remove cmd='reg delete %PKG_KEY% /v %PKG_VALUE% /f'/>
</package>
</source>