14,136,351
Downloads
19,434
Downloads of v 50.0.2661.87
4/21/2016
Last update
Chrome is a fast, simple, and secure web browser, built for the modern web.
Note
This package uses Chrome’s administrative MSI installer and installs the 32-bit on 32-bit OSes and the 64-bit version on 64-bit OSes. If this package is installed on a 64-bit OS and the 32-bit version of Chrome is already installed, the package keeps installing/updating the 32-bit version of Chrome.
This package always installs the latest version of Google Chrome, regardless of the version specified in the package. Google does not officially offer older versions of Chrome for download.
To install Google Chrome, run the following command from the command line or from PowerShell:
C:\> choco install googlechrome
--version 50.0.2661.87
To upgrade Google Chrome, run the following command from the command line or from PowerShell:
C:\> choco upgrade googlechrome
--version 50.0.2661.87
Files
Hide- tools\chocolateyInstall.ps1
Show
$packageName = 'GoogleChrome' $fileType = 'msi' $silentArgs = '/quiet' $url = 'https://dl.google.com/tag/s/appguid={8A69D345-D564-463C-AFF1-A69D9E530F96}&iid={00000000-0000-0000-0000-000000000000}&lang=en&browser=3&usagestats=0&appname=Google Chrome&needsadmin=prefers/edgedl/chrome/install/GoogleChromeStandaloneEnterprise.msi' $url64 = 'https://dl.google.com/tag/s/appguid={00000000-0000-0000-0000-000000000000}&iid={00000000-0000-0000-0000-000000000000}&lang=en&browser=4&usagestats=0&appname=Google Chrome&needsadmin=true/dl/chrome/install/googlechromestandaloneenterprise64.msi' $version = '50.0.2661.87' # This function checks if Chrome 32-bit is installed # on a 64-bit system function Check-Chrome32bitInstalled { $registryPath = 'HKLM:\SOFTWARE\WOW6432Node\Google\Update\ClientState\' if (Test-Path $registryPath) { Get-ChildItem $registryPath | ForEach-Object { if ((Get-ItemProperty $_.pspath).ap -eq '-multi-chrome') { return $true } } } } function Find-CID { param([String]$croot, [string]$cdname, [string]$ver) if (Test-Path $croot) { Get-ChildItem -Force -Path $croot | foreach { $CurrentKey = (Get-ItemProperty -Path $_.PsPath) if ($CurrentKey -match $cdname -and $CurrentKey -match $ver) { return $CurrentKey.PsChildName } } } return $null } $uroot = 'HKLM:\SOFTWARE\Google\Update\Clients' $uroot64 = 'HKLM:\SOFTWARE\Wow6432Node\Google\Update\Clients' $msid = Find-CID $uroot "Google Chrome binaries" "$version" if ($msid -eq $null) { # try 64bit registry $msid = Find-CID $uroot64 "Google Chrome binaries" "$version" } if ($msid -ne $null) { Write-Output "Google Chrome $version is already installed." } else { # If Chrome 32-bit is already installed on a 64-bit system, # keep installing the 32-bit version, otherwise install the # 64-bit version on 64-bit systems if (Check-Chrome32bitInstalled) { Install-ChocolateyPackage $packageName $fileType $silentArgs $url } else { Install-ChocolateyPackage $packageName $fileType $silentArgs $url $url64 } }
- tools\chocolateyUninstall.ps1
Show
$packageName = 'GoogleChrome' $app = Get-WmiObject -Class Win32_Product | Where-Object {$_.Name -eq 'Google Chrome'} if ($app) { $msiArgs = $('/x' + $app.IdentifyingNumber + ' /q REBOOT=ReallySuppress') Start-ChocolateyProcessAsAdmin $msiArgs 'msiexec' }
Virus Scan Results
- GoogleChrome.50.0.2661.87.nupkg (c639a27bf91e) - ## / 57 - Log in or click on link to see number of positives
- googlechromestandaloneenterprise64.msi (e70052ba8046) - ## / 56 - Log in or click on link to see number of positives
- GoogleChromeStandaloneEnterprise.msi (747b05791b54) - ## / 56 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Google Chrome 72.0.3626.109 | 110999 | Thursday, February 14, 2019 | approved |
Google Chrome 72.0.3626.96 | 170749 | Thursday, February 7, 2019 | approved |
Google Chrome 72.0.3626.81 | 193460 | Wednesday, January 30, 2019 | approved |
Google Chrome 71.0.3578.98 | 430898 | Thursday, December 13, 2018 | approved |
Google Chrome 71.0.3578.80 | 178796 | Wednesday, December 5, 2018 | approved |
Google Chrome 70.0.3538.11000 | 249515 | Monday, November 19, 2018 | approved |
Google Chrome 70.0.3538.10200 | 198197 | Saturday, November 10, 2018 | approved |
Google Chrome 70.0.3538.7700 | 298379 | Thursday, October 25, 2018 | approved |
Google Chrome 70.0.3538.6700 | 202301 | Wednesday, October 17, 2018 | approved |
Google Chrome 69.0.3497.10000 | 399461 | Tuesday, September 18, 2018 | approved |
Discussion for the Google Chrome Package
Ground rules:
- This discussion is only about Google Chrome and the Google Chrome package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Google Chrome, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.