Changes

Jump to: navigation, search

Google Chrome

1,550 bytes added, 23:13, 13 December 2011
Update to 16.0.912.63
GoogleChromeStandaloneEnterprise.msi is only available if using Windows.
 
Watch the [http://googlechromereleases.blogspot.com/ Google Chrome Releases] blog for info about new versions.
== System wide Installation ==
Interesting side note: even though you can't make ChromeStandaloneSetup.exe install silently, you can get a version of it that will install system-wide. To get this, download the regular version of ChromeStandaloneSetup.exe. Make a note of the URL of the file (in Firefox, right-click on the hyperlink and select "copy download link"). This URL will include the string 'needadmin%3Dfalse'. Replace 'needadmin%3Dfalse' with 'needadmin%3Dtrue' and download again from this modified URL. This will give you an installer for system-wide installation.
=== Google Chrome 16 ===
 
Chrome shows an odd product version in Uninstall Programs (64.228.63 for this version), so the package definition checks only that it is present and then checks the actual version against chrome.exe.
 
Chrome can be updated while it's running, but the changes won't happen until the running process is closed.
 
<source lang="xml">
<package
id="chrome"
name="Chrome"
revision="%version%"
reboot="false">
<variable name="version" value="16.0.912.63" />
<variable architecture="x86" name="progfiles" value="%PROGRAMFILES%" />
<variable architecture="x64" name="progfiles" value="%PROGRAMFILES(X86)%" />
<check
type="uninstall"
condition="exists"
path="Google Chrome" />
<check
type="file"
condition="versionequalto"
path="%progfiles%\Google\Chrome\Application\chrome.exe"
value="%version%" />
<install cmd="taskkill /F /IM chrome.exe">
<exit code="any" />
</install>
<install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
 
<upgrade cmd="taskkill /F /IM chrome.exe">
<exit code="any" />
</upgrade>
<upgrade cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
<remove cmd="taskkill /F /IM chrome.exe">
<exit code="any" />
</remove>
<remove cmd='msiexec /qn /x {54DF35BD-4A36-35DA-B029-A0C083C88614}' />
</package>
</source>
=== Google Chrome 15 ===
117
edits

Navigation menu