Difference between revisions of "Google Chrome"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Clean up and reorganize a little, add note about installing on RDS servers.)
 
(44 intermediate revisions by 13 users not shown)
Line 1: Line 1:
 
Chrome is a web browser from Google.
 
Chrome is a web browser from Google.
  
Watch the [http://googlechromereleases.blogspot.com/ Google Chrome Releases] blog for info about new versions.
+
You can download the current stable version in an MSI installer, Chrome for Business, for whichever operating system you're currently using from http://www.google.com/intl/en/chrome/business/browser/, or use the direct link to download the Windows version in particular from http://www.google.com/chrome/eula.html?msi=true&platform=win.
  
== Download ==
+
http://dl.google.com/tag/s/defaultbrowser/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi
  
You can download the current stable version of Google Chrome as an MSI file from http://www.google.com/chrome/eula.html?msi=true.
+
From [https://en.wikipedia.org/wiki/Google_Chrome#Enterprise_deployment Wikipedia]: "In December 2010 Google announced that to make it easier for businesses to use Chrome they would provide an official Chrome MSI package. For business use it is helpful to have full-fledged MSI packages that can be customized via transform files (.mst) - but the MSI provided with Chrome is only a very limited MSI wrapper fitted around the normal installer, and many businesses find that this arrangement does not meet their needs. The normal downloaded Chrome installer puts the browser in the user's local app data directory and provides invisible background updates, but the MSI package will allow installation at the system level, providing system administrators control over the update process — it was formerly possible only when Chrome was installed using Google Pack. Google also created group policy objects to fine tune the behavior of Chrome in the business environment, for example setting automatic updates interval, disable auto-updates, a home page and to workaround their basic Windows design flaws and bugs if it comes to roaming profiles support, etc. Until version 24 the software is known not to be ready for enterprise deployments with roaming profiles or Terminal Server/Citrix environments."
  
== Google Chrome 16 ==
+
Google Chrome is only available as a 32-bit program on Windows, there is no 64-bit version.
  
Chrome shows an odd product version in Uninstall Programs (64.228.75 for this version), so the package definition checks only that it is present and then checks the actual version against chrome.exe.
+
there is now (November 2016) a 64bit version which is also available as an enterprise installer.
  
Chrome can be updated while it's running, but the changes won't happen until the running process is closed.
+
== Google Chrome Enterprise ==
  
Note that Windows Server 2008 R2 has a new feature called Windows Installer RDS Compatibility. This feature is enabled by default when using Remote Desktop Services and will cause some MSI installers to hang. When run through WPKG the install process will appear to never finish. When run with the same parameters from a command-line you'll see a Windows Installer dialog that asks you to wait and a progress bar that repeatedly completes and restarts. To successfully install Chrome on an RDS server you need to [http://technet.microsoft.com/en-us/library/dd560667%28WS.10%29.aspx#BKMK_3|create a registry key to disable this feature]: HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows NT\Terminal Services\TSAppSrv\TSMSI, add a DWORD called Enable set to zero. The keys TSAppSrv and TSMSI probably won't exist and need to be created.
+
The Google Chrome installer (chrome_installer.exe) installs per-user. To install it system-wide (into the %PROGRAMFILES% directory), use Chrome for Business (GoogleChromeStandaloneEnterprise.msi).
 +
 
 +
Chrome shows an unrelated product version in Uninstall Programs, 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">
 
<source lang="xml">
<package
+
<?xml version="1.0" encoding="UTF-8"?>
  id="chrome"
+
  name="Chrome"
+
<!--
  revision="%version%"
+
    we use enterprise Chrome installer, which makes sane choices for most things
  reboot="false">
+
    the installer will run successfully whilst Chrome is running, installing to new_chrome.exe
+
    when the last running instance of Chrome exits, then:
  <variable name="version" value="16.0.912.75" />
+
    chrome.exe is renamed to old_chrome.exe
  <variable architecture="x86" name="progfiles" value="%PROGRAMFILES%" />
+
    new_chrome.exe is renamed to chrome.exe
  <variable architecture="x64" name="progfiles" value="%PROGRAMFILES(X86)%" />
+
+
    chrome installer log is at
  <check
+
    %temp%\chrome_installer.log
    type="uninstall"
+
-->
    condition="exists"
+
    path="Google Chrome" />
+
<packages:packages xmlns:packages="http://www.wpkg.org/packages"
  <check
+
    xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    type="file"
+
    xsi:schemaLocation="http://www.wpkg.org/packages xsd/packages.xsd">
    condition="versionequalto"
+
    path="%progfiles%\Google\Chrome\Application\chrome.exe"
+
    <package  
     value="%version%" />
+
        id="chrome"
+
        name="Google Chrome"
  <install cmd="taskkill /F /IM chrome.exe">
+
        revision="%version%"
    <exit code="any" />
+
        reboot="false"
  </install>
+
        priority="10">
  <install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
+
 +
        <variable name="version" value="54.0.2840.59" />
 +
 +
        <variable name="PKG_DESTINATION"     value="%PROGRAMFILES%\Google\Chrome\Application" />
 +
        <variable name="PKG_DESTINATION"     value="%PROGRAMFILES(x86)%\Google\Chrome\Application" architecture="x64"/>
 +
 +
        <!-- check the version no. to check the package state -->
 +
        <check type="logical" condition="or">
 +
            <check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\chrome.exe"    value="%version%" />
 +
            <check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\new_chrome.exe" value="%version%" />
 +
        </check>
 +
 +
        <!-- install the software, fails if .msi is renamed -->
 +
        <install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise.msi"' />
 +
        <!-- remove the desktop icon -->
 +
        <install cmd='%COMSPEC% /c if exist "%public%\Desktop\Google Chrome.lnk" del "%public%\Desktop\Google Chrome.lnk"' />
 +
        <!-- turn off AutoUpdate -->
 +
        <install cmd='REG ADD HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /d 0 /f /t REG_DWORD' />
 +
 +
        <upgrade include="install" />
 +
 +
        <!-- kill chrome and all it's buddies -->
 +
        <remove cmd="taskkill /F /IM chrome.exe"><exit code="any" /></remove>
 +
        <!-- this is sometimes slow, but works, and does not rely on the original installer being available -->
 +
        <remove cmd='wmic product where name="Google Chrome" call uninstall' />
 +
        <remove cmd='REG DELETE HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /f' />
 +
 +
    </package>
  
  <upgrade cmd="taskkill /F /IM chrome.exe">
+
</packages:packages>
    <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>
 
</source>
  
== Older Versions ==
+
==Disable Automatic Updates==
  
=== Google Chrome 15 ===
+
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_Settings Google Update for Enterprise].
This is a silent installer and uninstaller for Google Chrome with support for 32-bit and 64-bit systems.
+
  
<source lang="xml">
+
=== Windows Registry===
<package id="chrome" name="Google Chrome" revision="%version%" priority="20" reboot="false">
+
  
        <variable name="version" value="15.0.874.120" />
+
==== Update policy override policy ====
  
        <check type="uninstall" condition="exists" path="Google Chrome" />
+
Prevent updates for specific application(s), using the "Update policy override" policy for that specific application, as defined by its <AppID> (Is there one ID for all versions of Chrome, or one for each version of Chrome?):
  
        <check type="logical" condition="or">
+
HKLM\SOFTWARE\Policies\Google\Update\Update<AppID>=REG_DWORD:0
            <check type="file" condition="exists" path="%PROGRAMFILES%\Google\Chrome\Application\11.0.696.57\nacl64.exe" />
+
            <check type="file" condition="exists" path="%PROGRAMFILES(x86)%\Google\Chrome\Application\11.0.696.57\nacl64.exe" />
+
        </check>
+
  
        <install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise.msi"' />
+
For example:
  
        <upgrade cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise.msi"' />
+
HKLM\SOFTWARE\Policies\Google\Update\Update{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}=REG_DWORD:0
  
        <remove cmd="msiexec /qn /x {54DF35BD-4A36-35DA-B029-A0C083C88614}" />
+
==== Update policy override default policy ====
</package>
+
</source>
+
  
 +
Prevent any application that uses Google Update from being automatically updated, using the 'Update policy override default' policy:
  
=== Google Chrome 11 ===
+
HKLM\SOFTWARE\Policies\Google\Update\UpdateDefault=REG_DWORD:0
This is a silent installer and uninstaller for Google Chrome with support for 32-bit and 64-bit systems.
+
  
<source lang="xml">
+
=== WPKG ===
<?xml version="1.0" encoding="UTF-8"?>
+
<packages>
+
<package id="chrome" name="Google Chrome 11" revision="11.0.696.57" priority="20" reboot="false">
+
  
        <check type="uninstall" condition="exists" path="Google Chrome" />
+
==== Update policy override policy ====
  
        <check type="logical" condition="or">
+
<source lang="xml">
            <check type="file" condition="exists" path="%PROGRAMFILES%\Google\Chrome\Application\11.0.696.57\nacl64.exe" />
+
    <package id="google-chrome-pol-no.update"
             <check type="file" condition="exists" path="%PROGRAMFILES(x86)%\Google\Chrome\Application\11.0.696.57\nacl64.exe" />
+
            name="Google Chrome (Policy) - Disable updates"
        </check>
+
             revision="1"
 +
            reboot="false"
 +
            priority="1">
  
         <install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise.msi"' />
+
         <depends package-id="google-chrome"/>
  
         <upgrade cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise.msi"' />
+
         <variable name="PKG_KEY"          value="HKLM\SOFTWARE\Policies\Google\Update"/>
  
         <remove cmd="msiexec /qn /x {54DF35BD-4A36-35DA-B029-A0C083C88614}" />
+
         <variable name="PKG_VALUE"        value="Update{4DC8B4CA-1BDA-483E-B5FA-D3C12E15B62D}"/>
    </package>
+
</packages>
+
</source>
+
  
 +
        <variable name="PKG_DATA"          value="0"/>
  
=== Google Chrome 10 ===
+
        <check type="registry" condition="equals" path="%PKG_KEY%\%PKG_VALUE%" value="%PKG_DATA%" />
  
<source lang="xml">
+
        <install cmd='reg add %PKG_KEY% /v %PKG_VALUE% /d %PKG_DATA% /t REG_DWORD /f'/>
<?xml version="1.0" encoding="UTF-8"?>
+
  
<packages>
+
        <upgrade include="install" />
  <package id="chrome" name="Google Chrome" revision="10.0.648.205" reboot="false" priority="2" >
+
  
    <check type="uninstall" condition="exists" path="Google Chrome"/>
+
        <remove cmd='reg delete %PKG_KEY% /v %PKG_VALUE% /f'/>
 +
    </package>
 +
</source>
  
    <check type="file" condition="exists" path="%PROGRAMFILES%\Google\Chrome\Application\10.0.648.205\nacl64.exe" />
+
== Note for Remote Desktop Services ==
  
    <install cmd='%SOFTWARE%\chrome\chrome_installer.exe --system-level --do-not-launch-chrome'/>
+
Windows Server 2008 R2 has a new feature called Windows Installer RDS Compatibility. This feature is enabled by default when using Remote Desktop Services and will cause some MSI installers to hang. When run through WPKG the install process will appear to never finish. When run with the same parameters from a command-line you'll see a Windows Installer dialog that asks you to wait and a progress bar that repeatedly completes and restarts. To successfully install Chrome on an RDS server you need to configure it using either:
  
    <upgrade cmd='%SOFTWARE%\chrome\chrome_installer.exe --system-level --do-not-launch-chrome'/>
+
=== Windows Registry ===
  
    <remove cmd='%SOFTWARE%\chrome\chrome_installer.exe --uninstall --force-uninstall --system-level'/>
+
Create a [http://technet.microsoft.com/en-us/library/dd560667%28WS.10%29.aspx#BKMK_3|registry key to disable this feature]:
  </package>
+
</packages>
+
</source>
+
  
 +
HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows NT\Terminal Services\TSAppSrv\TSMSI\Enable=DWORD:0
  
=== Google Chrome 9 ===
+
The keys TSAppSrv and TSMSI probably won't exist and need to be created.
  
<source lang="xml">
+
=== Windows GUI ===
<?xml version="1.0" encoding="UTF-8"?>
+
Start &rarr; control panel &rarr; install application on remote desktop &rarr; Browse to the MSI file listed above.
<packages>
+
  
  <package id="chrome" name="Google Chrome 9" revision="9.2.21854" reboot="false" priority="20">
+
Start &rarr; Run &rarr; MMC.exe addin &rarr; Group Policy ObjectEditor \Computer Configuration\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Application Compatibility – Turn off Windows Installer RDS Compatibility
  
    <check type="uninstall" condition="exists" path="Google Chrome"/>
+
Turn back on after you're done.
  
    <check type="file" condition="exists" path="%PROGRAMFILES%\Google\Chrome\Application\9.0.597.94\nacl64.exe" />
+
It is possible for this not to work if you changed the policy while it was installing saying "please wait..."; also, make sure users didn't install Chrome into their Windows profile (you can only see their Chrome in their own Add/Remove Programs).
+
    <install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChrome.msi"' />
+
  
    <upgrade cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChrome.msi"' />
+
== Automated Updates of Chrome's WPKG Files ==
  
    <remove  cmd='msiexec /qn /x {54DF35BD-4A36-35DA-B029-A0C083C88614}' />
+
This is a VBScript we run on our WPKG server that downloads the current Chrome MSI, renames it according to the Chrome release number, and updates the package XML files accordingly. This greatly simplifies rolling out new versions of Chrome: we watch the [http://googlechromereleases.blogspot.com/atom.xml Google Chrome Releases RSS feed], and anytime we see a stable channel update, we run our VBScript. It's been working since April, for Chrome releases 18 through 21.
  </package>
+
</packages>
+
</source>
+
  
 +
=== update-chrome.vbs ===
  
===Google Chrome 7.0===
+
<source lang='vb'>
 +
' update-chrome.vbs -- stored in %SOFTWARE%\google-chrome
 +
Option Explicit
 +
Dim objFSO, objFile, strFileProperties, objShell, strChromePath, strChromeURL
 +
Dim strVersion, objResult, strChromeFilename, objOleFile, arrComments
 +
Dim strTemplateFilename, ForReading, ForWriting, strText
 +
Dim strNewText
  
<source lang="xml">
+
strChromePath = "L:\wpkg\software\google-chrome\"
<?xml version="1.0" encoding="UTF-8"?>
+
strChromeFilename = "GoogleChromeStandaloneEnterprise.msi"
 +
strTemplateFilename = "google-chrome-template.xml"
 +
strChromeURL = "https://dl.google.com/edgedl/chrome/install/" & _
 +
strChromeFilename
  
<packages>
+
Set objShell = CreateObject("WScript.Shell")
  <package id="chrome" name="Google Chrome" revision="1" reboot="false" priority="2" >
+
Set objFSO = CreateObject("Scripting.FileSystemObject")
 +
Set objOleFile = CreateObject("DSOFile.OleDocumentProperties")
  
    <check type="uninstall" condition="exists" path="Google Chrome"/>
+
objShell.CurrentDirectory = strChromePath
 +
' wget downloaded from http://users.ugent.be/~bpuype/wget/
 +
objResult = objShell.Run("wget --no-check-certificate " & strChromeURL, _
 +
1, True)
 +
If objFSO.FileExists(strChromePath & strChromeFilename) Then
 +
' Grab version number. Requires Office installation, or DSOFile.dll
 +
' from http://support.microsoft.com/kb/224351
 +
objOleFile.Open(strChromePath & strChromeFilename)
 +
arrComments = Split(objOleFile.SummaryProperties.Comments, " ", 2)
 +
strVersion = arrComments(0)
 +
objOleFile.Close
  
    <check type="file" condition="exists" path="%PROGRAMFILES%\Google\Chrome\Application\7.0.517.41\nacl64.exe" />
+
' Make a copy of the file
 +
Set objFile = objFSO.GetFile(strChromePath & strChromeFilename)
 +
objFile.Copy strChromePath & "GoogleChromeStandaloneEnterprise-" & _
 +
strVersion & ".msi", True
 +
' Delete the original file
 +
objFile.Delete True
 +
' Update package definitions
 +
updateXML strTemplateFilename, _
 +
"..\..\packages\google-chrome.xml" ' legacy tree
 +
updateXML strTemplateFilename, _
 +
"..\..\dev\packages\google-chrome.xml" ' dev tree
 +
updateXML strTemplateFilename, _
 +
"..\..\stable\packages\google-chrome.xml" ' stable tree
 +
Else
 +
MsgBox "Selected file does not exist!"
 +
End If
  
    <install cmd='%SOFTWARE%\chrome\chrome_installer.exe --system-level --do-not-launch-chrome'/>
+
Sub updateXML(strTemplateFilename, strPackageFilename)
 +
' Update package definition
 +
ForReading = 1
 +
ForWriting = 2
 +
Set objFile = objFSO.OpenTextFile(strTemplateFilename, ForReading)
 +
strText = objFile.ReadAll
 +
objFile.Close
 +
strNewText = Replace(strText, "__VERSION__", strVersion)
  
    <upgrade cmd='%SOFTWARE%\chrome\chrome_installer.exe --system-level --do-not-launch-chrome'/>
+
Set objFile = objFSO.OpenTextFile(strPackageFilename, ForWriting)
 
+
objFile.WriteLine strNewText
    <remove cmd='%SOFTWARE%\chrome\chrome_installer.exe --uninstall --force-uninstall --system-level'/>
+
objFile.Close
  </package>
+
End Sub
</packages>
+
 
</source>
 
</source>
  
 +
=== google-chrome-template.xml ===
  
===Google Chrome 5.0===
+
<source lang='xml'>
 +
<!--
 +
Thie file generated from %SOFTWARE%\google-chrome\update-chrome.vbs and google-chrome-template.xml
 +
Manual edits to packages\google-chrome.xml will be overwritten.
 +
-->
 +
<packages>
 +
<package
 +
  id="google-chrome"
 +
  name="Google Chrome"
 +
  revision="%version%"
 +
  reboot="false">
 +
 +
  <variable name="version" value="__VERSION__" />
 +
  <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%\google-chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
 +
 +
  <upgrade include='install' />
 +
 +
  <remove cmd="taskkill /F /IM chrome.exe">
 +
    <exit code="any" />
 +
  </remove>
 +
  <remove cmd='msiexec /qn /x "%SOFTWARE%\google-chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
 +
</package>
 +
</packages>
  
<source lang="xml">
+
</source>
<?xml version="1.0" encoding="UTF-8"?>
+
  
<packages
+
--[[User:Mwr|Mwr]] 17:05, 10 August 2012 (CEST)
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+
    xsi:noNamespaceSchemaLocation="../xsd/packages.xsd" >
+
  
  <package id="chrome" name="Google Chrome" revision="1" reboot="false" priority="2" >
+
=== update-chrome-xml.sh ===
  
    <check type="uninstall" condition="exists" path="Google Chrome"/>
+
Just to get an idea how this can be done using bash scripting if your wpkg share is on linux using samba, here is my script which checks if there is a newer version of google chrome. Only then it copies the msi file and creates new xml file from template. It substitutes the __VERSION__ and __MSIKEY__ strings, which are extracted from the msi file. Seems like a quick hack to get the strings out of the MSI file, at least it works at the moment.
  
    <check type="file" condition="exists" path="%PROGRAMFILES%\Google\Chrome\Application\5.0.375.70\nacl64.exe" />
+
<source lang='bash'>
 +
#!/bin/bash
  
    <install cmd='%SOFTWARE%\chrome\chrome_installer.exe --system-level --do-not-launch-chrome'/>
+
# source: http://wpkg.org/Google_Chrome#Automated_Updates_of_Chrome.27s_WPKG_Files
 +
#
  
    <upgrade cmd='%SOFTWARE%\chrome\chrome_installer.exe --system-level --do-not-launch-chrome'/>
+
MAINPATH=/srv/share/install
 +
TMPPATH=$MAINPATH/temp
 +
DESTPATH=$MAINPATH/packages/GoogleChrome
 +
TEMPLATE=$MAINPATH/packages/Templates/googlechrome.xml
 +
FILENAME=googlechrome.xml
 +
TEMPFILE=$TMPPATH/$FILENAME
 +
DESTFILE=$MAINPATH/packages/$FILENAME
  
    <remove cmd='%SOFTWARE%\chrome\chrome_installer.exe --uninstall --force-uninstall --system-level'/>
+
DLFILE=GoogleChromeStandaloneEnterprise
  </package>
+
DLSOURCE=https://dl.google.com/edgedl/chrome/install/$DLFILE.msi
</packages>
+
</source>
+
  
  
== Per-user Installation ==
+
cd $TMPPATH
 +
rm $DLFILE.msi
 +
/usr/bin/wget --no-check-certificate $DLSOURCE
  
This is a silent installer and uninstaller for Google Chrome. This will install Google Chrome '''only for the user running WPKG'''.
+
RAWSTRINGS=`/usr/bin/strings $DLFILE.msi | /bin/grep -EC3 "^Installer$" | tr "\n" " " `
  
Normally, Google Chrome installs per-user. To install it system-wide into the %PROGRAMFILES% directory, use the chrome_installer.exe installer and the --system-level option. Note that the regular Chrome standalone installer (ChromeStandaloneSetup.exe) does not seem to accept any command-line switches and can't be made to install silently.
+
for k in ${RAWSTRINGS} ; do
 +
    unset SUBSTRING1; unset SUBSTRING2 ;
 +
    SUBSTRING1=`expr match "$k" '\([[:digit:].]\{12,16\}\)' `
 +
    if [ -n "${SUBSTRING1}" ] ; then
 +
      GCVERSION="$SUBSTRING1";
 +
      break
 +
    fi
 +
done
 +
for k in ${RAWSTRINGS} ; do
 +
    SUBSTRING2=`expr match "$k" '{\([[:alnum:]-]\{36\}\)}' `
 +
    if [ -n "$SUBSTRING2" ] ; then
 +
      GCMSIKEY=$SUBSTRING2;
 +
      break
 +
    fi
 +
done
  
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.
+
echo Version: $GCVERSION
 +
echo Key: $GCMSIKEY
  
<source lang="xml">
+
    if [ -z "$GCVERSION" ] ; then
<package
+
      echo no version found
id="chrome"
+
      exit 2
name="Google Chrome"
+
    fi
revision="18"
+
# create xml file from template
reboot="postponed"
+
priority="5">
+
  
<!--<check type="uninstall" condition="exists" path="Google Chrome" /> This doesn't work for per-user appliations... -->
+
sed -e "s/__VERSION__/${GCVERSION}/" <$TEMPLATE  | sed -e "s/__MSIKEY__/${GCMSIKEY}/" >$TEMPFILE
<check type="file" condition="exists" path="%USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application\chrome.exe" />
+
+
<install cmd="%SOFTWARE%\chrome\chrome_installer.exe"/>  
+
  
<install cmd="PING LOCALHOST -n 5"/>
+
diff -wB $TEMPLATE  $TEMPFILE >/dev/null
  
<install cmd="taskkill /IM chrome.exe">
+
if [ $? -eq 0 ] ; then
          <exit code="any"/>
+
    # version  not changed
        </install>
+
    echo string error
 +
    exit 1
 +
fi
  
<install cmd='cmd /c mkdir "%USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application"'>
+
diff -wB $TEMPFILE $DESTFILE >/dev/null
          <exit code="any"/>
+
        </install >
+
  
        <install cmd='cmd /c echo hello > "%USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application\First Run"'/>
+
if [ $? -eq 0 ] ; then
 +
    # no difference
 +
    echo not newer
 +
    rm $DLFILE.msi
 +
    exit 0
 +
fi
  
<upgrade cmd="%SOFTWARE%\chrome\chrome_installer.exe"/>
+
  echo copying files
  
<upgrade cmd="PING LOCALHOST -n 5"/>
+
mv $DLFILE.msi $DESTPATH/$DLFILE-$GCVERSION.msi
 +
cp $TEMPFILE $DESTFILE
  
<upgrade cmd="taskkill /IM chrome.exe">
 
          <exit code="any"/>
 
        </upgrade>
 
 
        <!-- CHANGE PATH WHENEVER THERE IS A NEW VERSION -->
 
<remove cmd='"%USERPROFILE%\Local Settings\Application Data\Google\Chrome\Application\1.0.154.59\Installer\setup.exe" --uninstall --force-uninstall'/>
 
</package>
 
 
</source>
 
</source>
  
 +
--[[User:Ftrojahn|Ftrojahn]] 12:09, 08 October 2013 (CEST)
  
 
==External Links==
 
==External Links==
 +
* [http://googlechromereleases.blogspot.com/ Google Chrome Releases] - info about new versions
 
* [http://chrome.blogspot.com/2010/12/chrome-is-ready-for-business.html '''chrome.blogspot.com''': Announcement of support for enterprise *level deployment]
 
* [http://chrome.blogspot.com/2010/12/chrome-is-ready-for-business.html '''chrome.blogspot.com''': Announcement of support for enterprise *level deployment]
 
* [http://www.google.com/apps/intl/en/business/chromebrowser.html '''www.google.com''': Download business version of Chrome (msi) for deployment]
 
* [http://www.google.com/apps/intl/en/business/chromebrowser.html '''www.google.com''': Download business version of Chrome (msi) for deployment]

Latest revision as of 16:00, 15 November 2016

Chrome is a web browser from Google.

You can download the current stable version in an MSI installer, Chrome for Business, for whichever operating system you're currently using from http://www.google.com/intl/en/chrome/business/browser/, or use the direct link to download the Windows version in particular from http://www.google.com/chrome/eula.html?msi=true&platform=win.

http://dl.google.com/tag/s/defaultbrowser/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi

From Wikipedia: "In December 2010 Google announced that to make it easier for businesses to use Chrome they would provide an official Chrome MSI package. For business use it is helpful to have full-fledged MSI packages that can be customized via transform files (.mst) - but the MSI provided with Chrome is only a very limited MSI wrapper fitted around the normal installer, and many businesses find that this arrangement does not meet their needs. The normal downloaded Chrome installer puts the browser in the user's local app data directory and provides invisible background updates, but the MSI package will allow installation at the system level, providing system administrators control over the update process — it was formerly possible only when Chrome was installed using Google Pack. Google also created group policy objects to fine tune the behavior of Chrome in the business environment, for example setting automatic updates interval, disable auto-updates, a home page and to workaround their basic Windows design flaws and bugs if it comes to roaming profiles support, etc. Until version 24 the software is known not to be ready for enterprise deployments with roaming profiles or Terminal Server/Citrix environments."

Google Chrome is only available as a 32-bit program on Windows, there is no 64-bit version.

there is now (November 2016) a 64bit version which is also available as an enterprise installer.

Google Chrome Enterprise

The Google Chrome installer (chrome_installer.exe) installs per-user. To install it system-wide (into the %PROGRAMFILES% directory), use Chrome for Business (GoogleChromeStandaloneEnterprise.msi).

Chrome shows an unrelated product version in Uninstall Programs, 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.

<?xml version="1.0" encoding="UTF-8"?>
 
<!-- 
    we use enterprise Chrome installer, which makes sane choices for most things
    the installer will run successfully whilst Chrome is running, installing to new_chrome.exe
    when the last running instance of Chrome exits, then:
    chrome.exe is renamed to old_chrome.exe
    new_chrome.exe is renamed to chrome.exe
 
    chrome installer log is at
    %temp%\chrome_installer.log
-->
 
<packages:packages xmlns:packages="http://www.wpkg.org/packages"
    xmlns:wpkg="http://www.wpkg.org/wpkg" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.wpkg.org/packages xsd/packages.xsd">
 
    <package 
        id="chrome"
        name="Google Chrome"
        revision="%version%"
        reboot="false"
        priority="10">
 
        <variable name="version" value="54.0.2840.59" />
 
         <variable name="PKG_DESTINATION"      value="%PROGRAMFILES%\Google\Chrome\Application" />
         <variable name="PKG_DESTINATION"      value="%PROGRAMFILES(x86)%\Google\Chrome\Application" architecture="x64"/>
 
        <!-- check the version no. to check the package state -->
        <check type="logical" condition="or">
            <check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\chrome.exe"     value="%version%" />
            <check type="file" condition="versiongreaterorequal" path="%PKG_DESTINATION%\new_chrome.exe" value="%version%" />
        </check> 
 
        <!-- install the software, fails if .msi is renamed -->
        <install cmd='msiexec /qn /norestart /i "%SOFTWARE%\chrome\GoogleChromeStandaloneEnterprise.msi"' />
        <!-- remove the desktop icon -->
        <install cmd='%COMSPEC% /c if exist "%public%\Desktop\Google Chrome.lnk" del "%public%\Desktop\Google Chrome.lnk"' />
        <!-- turn off AutoUpdate -->
        <install cmd='REG ADD HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /d 0 /f /t REG_DWORD' />
 
        <upgrade include="install" />
 
        <!-- kill chrome and all it's buddies -->
        <remove cmd="taskkill /F /IM chrome.exe"><exit code="any" /></remove>
        <!-- this is sometimes slow, but works, and does not rely on the original installer being available -->
        <remove cmd='wmic product where name="Google Chrome" call uninstall' />
        <remove cmd='REG DELETE HKLM\SOFTWARE\Policies\Google\Update /v AutoUpdateCheckPeriodMinutes /f' />
 
    </package>

</packages:packages>

Disable Automatic Updates

See Auto-updates and Google 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> (Is there one ID for all versions of Chrome, or one for each version of Chrome?):

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, using the 'Update policy override default' policy:

HKLM\SOFTWARE\Policies\Google\Update\UpdateDefault=REG_DWORD:0

WPKG

Update policy override policy

    <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>

Note for Remote Desktop Services

Windows Server 2008 R2 has a new feature called Windows Installer RDS Compatibility. This feature is enabled by default when using Remote Desktop Services and will cause some MSI installers to hang. When run through WPKG the install process will appear to never finish. When run with the same parameters from a command-line you'll see a Windows Installer dialog that asks you to wait and a progress bar that repeatedly completes and restarts. To successfully install Chrome on an RDS server you need to configure it using either:

Windows Registry

Create a key to disable this feature:

HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Windows NT\Terminal Services\TSAppSrv\TSMSI\Enable=DWORD:0 

The keys TSAppSrv and TSMSI probably won't exist and need to be created.

Windows GUI

Start → control panel → install application on remote desktop → Browse to the MSI file listed above.

Start → Run → MMC.exe addin → Group Policy ObjectEditor \Computer Configuration\Administrative Templates\Windows Components\Remote Desktop Services\Remote Desktop Session Host\Application Compatibility – Turn off Windows Installer RDS Compatibility

Turn back on after you're done.

It is possible for this not to work if you changed the policy while it was installing saying "please wait..."; also, make sure users didn't install Chrome into their Windows profile (you can only see their Chrome in their own Add/Remove Programs).

Automated Updates of Chrome's WPKG Files

This is a VBScript we run on our WPKG server that downloads the current Chrome MSI, renames it according to the Chrome release number, and updates the package XML files accordingly. This greatly simplifies rolling out new versions of Chrome: we watch the Google Chrome Releases RSS feed, and anytime we see a stable channel update, we run our VBScript. It's been working since April, for Chrome releases 18 through 21.

update-chrome.vbs

' update-chrome.vbs -- stored in %SOFTWARE%\google-chrome
Option Explicit
Dim objFSO, objFile, strFileProperties, objShell, strChromePath, strChromeURL
Dim strVersion, objResult, strChromeFilename, objOleFile, arrComments
Dim strTemplateFilename, ForReading, ForWriting, strText
Dim strNewText

strChromePath = "L:\wpkg\software\google-chrome\"
strChromeFilename = "GoogleChromeStandaloneEnterprise.msi"
strTemplateFilename = "google-chrome-template.xml"
strChromeURL = "https://dl.google.com/edgedl/chrome/install/" & _
	strChromeFilename

Set objShell = CreateObject("WScript.Shell")
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objOleFile = CreateObject("DSOFile.OleDocumentProperties")

objShell.CurrentDirectory = strChromePath
' wget downloaded from http://users.ugent.be/~bpuype/wget/
objResult = objShell.Run("wget --no-check-certificate " & strChromeURL, _
	1, True)
If objFSO.FileExists(strChromePath & strChromeFilename) Then
	' Grab version number. Requires Office installation, or DSOFile.dll
	' from http://support.microsoft.com/kb/224351
	objOleFile.Open(strChromePath & strChromeFilename)
	arrComments = Split(objOleFile.SummaryProperties.Comments, " ", 2)
	strVersion = arrComments(0)
	objOleFile.Close

	' Make a copy of the file
	Set objFile = objFSO.GetFile(strChromePath & strChromeFilename)
	objFile.Copy strChromePath & "GoogleChromeStandaloneEnterprise-" & _
		strVersion & ".msi", True
	' Delete the original file
	objFile.Delete True
	' Update package definitions
	updateXML strTemplateFilename, _
		"..\..\packages\google-chrome.xml" ' legacy tree
	updateXML strTemplateFilename, _
		"..\..\dev\packages\google-chrome.xml" ' dev tree
	updateXML strTemplateFilename, _
		"..\..\stable\packages\google-chrome.xml" ' stable tree
Else
	MsgBox "Selected file does not exist!"
End If

Sub updateXML(strTemplateFilename, strPackageFilename)
	' Update package definition
	ForReading = 1
	ForWriting = 2
	Set objFile = objFSO.OpenTextFile(strTemplateFilename, ForReading)
	strText = objFile.ReadAll
	objFile.Close
	strNewText = Replace(strText, "__VERSION__", strVersion)

	Set objFile = objFSO.OpenTextFile(strPackageFilename, ForWriting)
	objFile.WriteLine strNewText
	objFile.Close
End Sub

google-chrome-template.xml

<!--
Thie file generated from %SOFTWARE%\google-chrome\update-chrome.vbs and google-chrome-template.xml
Manual edits to packages\google-chrome.xml will be overwritten.
-->
<packages>
<package
  id="google-chrome"
  name="Google Chrome"
  revision="%version%"
  reboot="false">
 
  <variable name="version" value="__VERSION__" />
  <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%\google-chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
 
  <upgrade include='install' />
 
  <remove cmd="taskkill /F /IM chrome.exe">
    <exit code="any" />
  </remove>
  <remove cmd='msiexec /qn /x "%SOFTWARE%\google-chrome\GoogleChromeStandaloneEnterprise-%version%.msi"' />
</package>
</packages>

--Mwr 17:05, 10 August 2012 (CEST)

update-chrome-xml.sh

Just to get an idea how this can be done using bash scripting if your wpkg share is on linux using samba, here is my script which checks if there is a newer version of google chrome. Only then it copies the msi file and creates new xml file from template. It substitutes the __VERSION__ and __MSIKEY__ strings, which are extracted from the msi file. Seems like a quick hack to get the strings out of the MSI file, at least it works at the moment.

#!/bin/bash

# source: http://wpkg.org/Google_Chrome#Automated_Updates_of_Chrome.27s_WPKG_Files
#

MAINPATH=/srv/share/install
TMPPATH=$MAINPATH/temp
DESTPATH=$MAINPATH/packages/GoogleChrome
TEMPLATE=$MAINPATH/packages/Templates/googlechrome.xml
FILENAME=googlechrome.xml
TEMPFILE=$TMPPATH/$FILENAME
DESTFILE=$MAINPATH/packages/$FILENAME

DLFILE=GoogleChromeStandaloneEnterprise
DLSOURCE=https://dl.google.com/edgedl/chrome/install/$DLFILE.msi


cd $TMPPATH
rm $DLFILE.msi
/usr/bin/wget --no-check-certificate $DLSOURCE

RAWSTRINGS=`/usr/bin/strings $DLFILE.msi | /bin/grep -EC3 "^Installer$" | tr "\n" " " `

for k in ${RAWSTRINGS} ; do
    unset SUBSTRING1; unset SUBSTRING2 ;
    SUBSTRING1=`expr match "$k" '\([[:digit:].]\{12,16\}\)' `
    if [ -n "${SUBSTRING1}" ] ; then
       GCVERSION="$SUBSTRING1";
       break
    fi
done
for k in ${RAWSTRINGS} ; do
    SUBSTRING2=`expr match "$k" '{\([[:alnum:]-]\{36\}\)}' `
    if [ -n "$SUBSTRING2" ] ; then
       GCMSIKEY=$SUBSTRING2;
       break
    fi
done

echo Version: $GCVERSION
echo Key: $GCMSIKEY

    if [ -z "$GCVERSION" ] ; then
       echo no version found
       exit 2
    fi
# create xml file from template

sed -e "s/__VERSION__/${GCVERSION}/" <$TEMPLATE  | sed -e "s/__MSIKEY__/${GCMSIKEY}/"  >$TEMPFILE

diff -wB $TEMPLATE  $TEMPFILE >/dev/null

if [ $? -eq 0 ] ; then
    # version  not changed
    echo string error
    exit 1
fi

diff -wB $TEMPFILE $DESTFILE >/dev/null

if [ $? -eq 0 ] ; then
    # no difference
    echo not newer
    rm $DLFILE.msi
    exit 0
fi

   echo copying files

mv $DLFILE.msi $DESTPATH/$DLFILE-$GCVERSION.msi
cp $TEMPFILE $DESTFILE

--Ftrojahn 12:09, 08 October 2013 (CEST)

External Links