14,156,810
Downloads
147,829
Downloads of v 65.0.3325.14600
3/7/2018
Last update
Chrome is a fast, simple, and secure web browser, built for the modern web.
Notes
- 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 65.0.3325.14600
To upgrade Google Chrome, run the following command from the command line or from PowerShell:
C:\> choco upgrade googlechrome
--version 65.0.3325.14600
Files
Hide- tools\helpers.ps1
Show
function Get-Chrome32bitInstalled { $registryPath = 'HKLM:\SOFTWARE\WOW6432Node\Google\Update\ClientState\*' # We also return nothing if the user forces 32bit installation # as we don't need to make any checks in that case. if (!(Test-Path $registryPath) -or $env:ChocolateyForceX86 -eq $true) { return } $32bitInstalled = Get-Item $registryPath | ForEach-Object { if ((Get-ItemProperty $_.pspath).ap -match 'arch_x86$') { return $true } } if ($32bitInstalled) { return $32bitInstalled } $installLocation = Get-UninstallRegistryKey 'Google Chrome' | ForEach-Object { $_.InstallSource } if ($installLocation) { return Test-Path "$installLocation\nacl_irt_x86_32.nexe" } else { Write-Warning "Unable to find the architecture of the installed Google Chrome application" } } function Get-ChromeVersion() { $root = 'HKLM:\SOFTWARE\Google\Update\Clients' $root64 = 'HKLM:\SOFTWARE\Wow6432Node\Google\Update\Clients' foreach ($r in $root,$root64) { $gcb = Get-ChildItem $r -ea 0 | Where-Object { (Get-ItemProperty $_.PSPath).name -eq 'Google Chrome' } if ($gcb) { return $gcb.GetValue('pv') } } }
- tools\chocolateyInstall.ps1
Show
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition . $toolsPath\helpers.ps1 $version = '65.0.3325.146' if ($version -eq (Get-ChromeVersion)) { Write-Host "Google Chrome $version is already installed." return } $packageArgs = @{ packageName = 'googlechrome' fileType = 'MSI' url = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise.msi' url64bit = 'https://dl.google.com/tag/s/dl/chrome/install/googlechromestandaloneenterprise64.msi' checksum = 'a44ab133393fbaba34b87c6690977ed76dfe5d0801e70fbc5f6712321cf8167f' checksum64 = '2b312cc14be048a3e849025e2dbb2739f1d2f0ff33003becf0f1f9d36340390b' checksumType = 'sha256' checksumType64 = 'sha256' silentArgs = "/quiet /norestart /l*v `"$($env:TEMP)\$($env:chocolateyPackageName).$($env:chocolateyPackageVersion).MsiInstall.log`"" validExitCodes = @(0) } if (Get-Chrome32bitInstalled) { 'url64bit', 'checksum64', 'checksumType64' | ForEach-Object { $packageArgs.Remove($_) } } Install-ChocolateyPackage @packageArgs
Virus Scan Results
- GoogleChrome.65.0.3325.14600.nupkg (944ee4111915) - ## / 61 - Log in or click on link to see number of positives
- googlechromestandaloneenterprise64.msi (2b312cc14be0) - ## / 59 - Log in or click on link to see number of positives
- googlechromestandaloneenterprise.msi (a44ab133393f) - ## / 59 - Log in or click on link to see number of positives
Dependencies
-
- chocolatey-core.extension (≥ 1.3.3)
Package Maintainer(s)
Software Author(s)
Tags
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Google Chrome 72.0.3626.109 | 130473 | Thursday, February 14, 2019 | approved |
Google Chrome 72.0.3626.96 | 170799 | Thursday, February 7, 2019 | approved |
Google Chrome 72.0.3626.81 | 193617 | Wednesday, January 30, 2019 | approved |
Google Chrome 71.0.3578.98 | 430932 | Thursday, December 13, 2018 | approved |
Google Chrome 71.0.3578.80 | 178801 | Wednesday, December 5, 2018 | approved |
Google Chrome 70.0.3538.11000 | 249543 | Monday, November 19, 2018 | approved |
Google Chrome 70.0.3538.10200 | 198267 | Saturday, November 10, 2018 | approved |
Google Chrome 70.0.3538.7700 | 298382 | Thursday, October 25, 2018 | approved |
Google Chrome 70.0.3538.6700 | 202301 | Wednesday, October 17, 2018 | approved |
Google Chrome 69.0.3497.10000 | 399476 | 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.