9,127,285
Downloads
14,604
Downloads of v 50.0.2661.94
4/28/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.94
To upgrade Google Chrome, run the following command from the command line or from PowerShell:
C:\> choco upgrade googlechrome
--version 50.0.2661.94
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.94' # 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.94.nupkg (58674a42ce15) - ## / 56 - Log in or click on link to see number of positives
- googlechromestandaloneenterprise64.msi (4f29c727c919) - ## / 56 - Log in or click on link to see number of positives
- GoogleChromeStandaloneEnterprise.msi (c45dce4e9c2e) - ## / 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 66.0.3359.11700 | 76916 | Wednesday, April 18, 2018 | approved |
Google Chrome 65.0.3325.18100 | 307406 | Wednesday, March 21, 2018 | approved |
Google Chrome 65.0.3325.16200 | 117426 | Wednesday, March 14, 2018 | approved |
Google Chrome 65.0.3325.14600 | 128167 | Wednesday, March 7, 2018 | approved |
Google Chrome 64.0.3282.18600 | 174510 | Friday, February 23, 2018 | approved |
Google Chrome 64.0.3282.16800 | 340039 | Wednesday, February 14, 2018 | approved |
Google Chrome 64.0.3282.16700 | 17463 | Wednesday, February 14, 2018 | approved |
Google Chrome 64.0.3282.14000 | 295166 | Friday, February 2, 2018 | approved |
Google Chrome 64.0.3282.11900 | 160438 | Wednesday, January 24, 2018 | approved |
Google Chrome 63.0.3239.132 | 281068 | Friday, January 5, 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.