Downloads:
958
Downloads of v 132.0.6821.2-dev:
14
Last Update:
08 Nov 2024
Package Maintainer(s):
Software Author(s):
- Google LLC.
Tags:
google chrome dev web internet browser admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Google Chrome Dev
This is a prerelease version of Google Chrome Dev.
- 1
- 2
- 3
132.0.6821.2-dev | Updated: 08 Nov 2024
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
958
Downloads of v 132.0.6821.2-dev:
14
Maintainer(s):
Software Author(s):
- Google LLC.
Google Chrome Dev 132.0.6821.2-dev
This is a prerelease version of Google Chrome Dev.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Google LLC. The inclusion of Google LLC. trademark(s), if any, upon this webpage is solely to identify Google LLC. goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Google Chrome Dev, run the following command from the command line or from PowerShell:
To upgrade Google Chrome Dev, run the following command from the command line or from PowerShell:
To uninstall Google Chrome Dev, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download googlechromedev --internalize --version=132.0.6821.2-dev --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade googlechromedev -y --source="'INTERNAL REPO URL'" --version="'132.0.6821.2-dev'" --prerelease [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade googlechromedev -y --source="'INTERNAL REPO URL'" --version="'132.0.6821.2-dev'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install googlechromedev
win_chocolatey:
name: googlechromedev
version: '132.0.6821.2-dev'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'googlechromedev' do
action :install
source 'INTERNAL REPO URL'
version '132.0.6821.2-dev'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller googlechromedev
{
Name = "googlechromedev"
Version = "132.0.6821.2-dev"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'googlechromedev':
ensure => '132.0.6821.2-dev',
install_options => ['--prerelease'],
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package is exempt from moderation. While it is likely safe for you, there is more risk involved.
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 Dev, regardless of the version specified in the package. Google does not officially offer older versions of Chrome for download. Because of this you may get checksum mismatch between the time Google releases a new installer, and the package is automatically updated.
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 Dev' | 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 Dev application"
}
}
function Get-ChromeDevVersion() {
$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 Dev' }
if ($gcb) { return $gcb.GetValue('pv') }
}
}
Log in or click on link to see number of positives.
- googlechromedev.132.0.6821.2-dev.nupkg (5e4e59ed6ae1) - ## / 67
- googlechromedevstandaloneenterprise64.msi (37479295a389) - ## / 62
- googlechromedevstandaloneenterprise.msi (9578edf4ac23) - ## / 62
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Google Chrome Dev 133.0.6847.2-dev | 7 | Thursday, November 21, 2024 | Exempted | |
Google Chrome Dev 133.0.6835.3-dev | 18 | Friday, November 15, 2024 | Exempted | |
Google Chrome Dev 132.0.6821.2-dev | 14 | Friday, November 8, 2024 | Exempted | |
Google Chrome Dev 132.0.6811.2-dev | 18 | Tuesday, November 5, 2024 | Exempted | |
Google Chrome Dev 132.0.6793.2-dev | 18 | Friday, October 25, 2024 | Exempted | |
Google Chrome Dev 132.0.6779-dev | 11 | Thursday, October 17, 2024 | Exempted | |
Google Chrome Dev 131.0.6768.4-dev | 18 | Saturday, October 12, 2024 | Exempted | |
Google Chrome Dev 131.0.6753-dev | 23 | Friday, October 4, 2024 | Exempted | |
Google Chrome Dev 131.0.6738-dev | 13 | Friday, September 27, 2024 | Exempted | |
Google Chrome Dev 131.0.6724-dev | 18 | Friday, September 20, 2024 | Exempted | |
Google Chrome Dev 130.0.6710-dev | 15 | Thursday, September 12, 2024 | Exempted | |
Google Chrome Dev 130.0.6699.3-dev | 23 | Monday, September 9, 2024 | Exempted | |
Google Chrome Dev 130.0.6683.2-dev | 30 | Friday, August 30, 2024 | Exempted | |
Google Chrome Dev 130.0.6669.2-dev | 18 | Friday, August 23, 2024 | Exempted | |
Google Chrome Dev 129.0.6658-dev | 14 | Friday, August 16, 2024 | Exempted | |
Google Chrome Dev 129.0.6643.2-dev | 18 | Friday, August 9, 2024 | Exempted | |
Google Chrome Dev 129.0.6628.3-dev | 14 | Thursday, August 1, 2024 | Exempted | |
Google Chrome Dev 129.0.6614.3-dev | 26 | Friday, July 26, 2024 | Exempted | |
Google Chrome Dev 128.0.6613.7-dev | 14 | Wednesday, July 24, 2024 | Exempted | |
Google Chrome Dev 128.0.6601.2-dev | 30 | Friday, July 19, 2024 | Exempted | |
Google Chrome Dev 128.0.6585-dev | 17 | Thursday, July 11, 2024 | Exempted | |
Google Chrome Dev 128.0.6559-dev | 22 | Friday, June 28, 2024 | Exempted | |
Google Chrome Dev 128.0.6555.2-dev | 20 | Tuesday, June 25, 2024 | Exempted | |
Google Chrome Dev 128.0.6535.2-dev | 22 | Friday, June 14, 2024 | Exempted | |
Google Chrome Dev 127.0.6523.4-dev | 37 | Saturday, June 8, 2024 | Exempted | |
Google Chrome Dev 127.0.6510.4-dev | 21 | Friday, May 31, 2024 | Exempted | |
Google Chrome Dev 127.0.6496.3-dev | 19 | Tuesday, May 28, 2024 | Exempted | |
Google Chrome Dev 127.0.6485-dev | 28 | Monday, May 20, 2024 | Exempted | |
Google Chrome Dev 126.0.6468.2-dev | 19 | Tuesday, May 14, 2024 | Exempted | |
Google Chrome Dev 126.0.6452.3-dev | 16 | Saturday, May 4, 2024 | Exempted | |
Google Chrome Dev 126.0.6439-dev | 23 | Friday, April 26, 2024 | Exempted | |
Google Chrome Dev 126.0.6423.2-dev | 21 | Friday, April 19, 2024 | Exempted | |
Google Chrome Dev 125.0.6420.3-dev | 21 | Wednesday, April 17, 2024 | Exempted | |
Google Chrome Dev 125.0.6396.3-dev | 25 | Friday, April 5, 2024 | Exempted | |
Google Chrome Dev 125.0.6382.3-dev | 29 | Friday, March 29, 2024 | Exempted | |
Google Chrome Dev 125.0.6368.2-dev | 26 | Thursday, March 21, 2024 | Exempted | |
Google Chrome Dev 124.0.6356.6-dev | 24 | Friday, March 15, 2024 | Exempted | |
Google Chrome Dev 124.0.6342.3-dev | 20 | Friday, March 8, 2024 | Exempted | |
Google Chrome Dev 124.0.6329-dev | 23 | Monday, March 4, 2024 | Exempted | |
Google Chrome Dev 124.0.6315.2-dev | 31 | Saturday, February 24, 2024 | Exempted | |
Google Chrome Dev 123.0.6300.3-dev | 23 | Friday, February 16, 2024 | Exempted | |
Google Chrome Dev 123.0.6286-dev | 24 | Friday, February 9, 2024 | Exempted | |
Google Chrome Dev 123.0.6272.2-dev | 32 | Thursday, February 1, 2024 | Exempted | |
Google Chrome Dev 123.0.6262.5-dev | 25 | Thursday, January 25, 2024 | Exempted | |
Google Chrome Dev 122.0.6253.3-dev | 30 | Sunday, January 21, 2024 | Exempted |
This package has no dependencies.
Ground Rules:
- This discussion is only about Google Chrome Dev and the Google Chrome Dev 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 Dev, 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.