Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(googlechrome) MSI 1603 Error when installing #2592

Closed
2 tasks done
arencibiafrancisco opened this issue Dec 10, 2024 · 6 comments
Closed
2 tasks done

(googlechrome) MSI 1603 Error when installing #2592

arencibiafrancisco opened this issue Dec 10, 2024 · 6 comments

Comments

@arencibiafrancisco
Copy link

Checklist

  • I have verified that this is the correct repository, and the package is maintained by the chocolatey-community user.
  • I have verified that this is happening in the latest available version of the package.

Chocolatey Version

2.4.1

Chocolatey License

None

Package Version

131.0.6778.86

Current Behaviour

PS C:\Users\Administrador> choco install googlechrome -y --ignore-checksums
Chocolatey v2.4.1
Installing the following packages:
googlechrome
By installing, you accept licenses for the packages.
Downloading package from source 'https://community.chocolatey.org/api/v2/'
Progress: Downloading GoogleChrome 131.0.6778.86... 100%

GoogleChrome v131.0.6778.86 [Approved]
GoogleChrome package files install completed. Performing other installation steps.
File appears to be downloaded already. Verifying with package checksum to determine if it needs to be redownloaded.
WARNING: Ignoring checksums due to feature checksumFiles turned off or option --ignore-checksums set.
WARNING: Ignoring checksums due to feature checksumFiles turned off or option --ignore-checksums set.
Installing googlechrome...
WARNING: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed). Please see MSI log if available. If not, try again adding '--install-arguments="'/lv c:\GoogleChrome_msi_install.log'"'. Then search the MSI Log for "Return Value 3" and look above that for the error.
ERROR: Running ["C:\Windows\System32\msiexec.exe" /i "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi" /quiet /norestart /l
v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"] was not successful. Exit code was '1603'. Exit code indicates the following: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed). Please see MSI log if available. If not, try again adding '--install-arguments="'/l*v c:\GoogleChrome_msi_install.log'"'. Then search the MSI Log for "Return Value 3" and look above that for the error..
The install of GoogleChrome was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'.
See log for details.

Chocolatey installed 0/1 packages. 1 packages failed.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures

  • GoogleChrome (exited 1603) - Error while running 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'.
    See log for details.
    PS C:\Users\Administrador>

Expected Behaviour

Install without errors

Steps To Reproduce

PS C:\Users\Administrador> choco install googlechrome -y --ignore-checksums
Chocolatey v2.4.1
Installing the following packages:
googlechrome
By installing, you accept licenses for the packages.
Downloading package from source 'https://community.chocolatey.org/api/v2/'
Progress: Downloading GoogleChrome 131.0.6778.86... 100%

GoogleChrome v131.0.6778.86 [Approved]
GoogleChrome package files install completed. Performing other installation steps.
File appears to be downloaded already. Verifying with package checksum to determine if it needs to be redownloaded.
WARNING: Ignoring checksums due to feature checksumFiles turned off or option --ignore-checksums set.
WARNING: Ignoring checksums due to feature checksumFiles turned off or option --ignore-checksums set.
Installing googlechrome...
WARNING: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed). Please see MSI log if available. If not, try again adding '--install-arguments="'/lv c:\GoogleChrome_msi_install.log'"'. Then search the MSI Log for "Return Value 3" and look above that for the error.
ERROR: Running ["C:\Windows\System32\msiexec.exe" /i "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi" /quiet /norestart /l
v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"] was not successful. Exit code was '1603'. Exit code indicates the following: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed). Please see MSI log if available. If not, try again adding '--install-arguments="'/l*v c:\GoogleChrome_msi_install.log'"'. Then search the MSI Log for "Return Value 3" and look above that for the error..
The install of GoogleChrome was NOT successful.
Error while running 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'.
See log for details.

Chocolatey installed 0/1 packages. 1 packages failed.
See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).

Failures

  • GoogleChrome (exited 1603) - Error while running 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'.
    See log for details.
    PS C:\Users\Administrador>

Environment

- Operating System: Windows Server 2022
- PowerShell Version: 5.1.20348.2849
- Shell: Powershell

Chocolatey Log

$version = '131.0.6778.86'
if ($version -eq (Get-ChromeVersion)) {
  Write-Host "Google Chrome $version is already installed."
  return
}

$packageArgs = @{
  packageName            = 'googlechrome'
  fileType               = 'MSI'
  url                    = 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi'
  url64bit               = 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi'
  checksum               = '3063058e997b15e0d4b48da063e7f2f650fcf38336cfc666dc9cdaa61ab8f495'
  checksum64             = '9fcf15cb2390b84887b94e8e2f41d01eff325eccdac405e4f9a156dbc209689d'
  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

2024-12-10 10:04:19,352 7452 [DEBUG] - Calling built-in PowerShell host with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null']
2024-12-10 10:04:19,368 7452 [DEBUG] - Redirecting System.Management.Automation.resources, Version=3.0.0.0, Culture=es-ES, PublicKeyToken=31bf3856ad364e35, requested by ''
2024-12-10 10:04:19,493 7452 [DEBUG] - Host version is 5.1.20348.1, PowerShell Version is '5.1.20348.2849' and CLR Version is '4.0.30319.42000'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\helpers\Chocolatey.PowerShell.dll'.
2024-12-10 10:04:19,633 7452 [DEBUG] - Returning loaded assembly type for 'Chocolatey.PowerShell'
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariable'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariableNames'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Install-ChocolateyPath'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Set-EnvironmentVariable'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Test-ProcessAdminRights'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Uninstall-ChocolateyPath'.
2024-12-10 10:04:19,633 7452 [INFO ] - VERBOSE: Importing cmdlet 'Update-SessionEnvironment'.
2024-12-10 10:04:19,649 7452 [DEBUG] - Cmdlets exported from Chocolatey.PowerShell.dll
2024-12-10 10:04:19,649 7452 [DEBUG] - Get-EnvironmentVariable
2024-12-10 10:04:19,649 7452 [DEBUG] - Get-EnvironmentVariableNames
2024-12-10 10:04:19,649 7452 [DEBUG] - Install-ChocolateyPath
2024-12-10 10:04:19,649 7452 [DEBUG] - Set-EnvironmentVariable
2024-12-10 10:04:19,649 7452 [DEBUG] - Test-ProcessAdminRights
2024-12-10 10:04:19,649 7452 [DEBUG] - Uninstall-ChocolateyPath
2024-12-10 10:04:19,649 7452 [DEBUG] - Update-SessionEnvironment
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2024-12-10 10:04:19,649 7452 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2024-12-10 10:04:19,664 7452 [DEBUG] - Loading community extensions
2024-12-10 10:04:19,664 7452 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'
2024-12-10 10:04:19,664 7452 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-compatibility\chocolatey-compatibility.psm1'.
2024-12-10 10:04:19,696 7452 [DEBUG] - Function 'Get-PackageParameters' exists, ignoring export.
2024-12-10 10:04:19,696 7452 [DEBUG] - Function 'Get-UninstallRegistryKey' exists, ignoring export.
2024-12-10 10:04:19,696 7452 [DEBUG] - Exporting function 'Install-ChocolateyDesktopLink' for backwards compatibility
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2024-12-10 10:04:19,696 7452 [DEBUG] - Exporting function 'Write-ChocolateyFailure' for backwards compatibility
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2024-12-10 10:04:19,696 7452 [DEBUG] - Exporting function 'Write-ChocolateySuccess' for backwards compatibility
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2024-12-10 10:04:19,696 7452 [DEBUG] - Exporting function 'Write-FileUpdateLog' for backwards compatibility
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2024-12-10 10:04:19,696 7452 [DEBUG] - Importing 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'
2024-12-10 10:04:19,696 7452 [INFO ] - VERBOSE: Loading module from path 'C:\ProgramData\chocolatey\extensions\chocolatey-core\chocolatey-core.psm1'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Register-Application'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Exporting function 'Remove-Process'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Get-WebContent'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Register-Application'.
2024-12-10 10:04:19,727 7452 [INFO ] - VERBOSE: Importing function 'Remove-Process'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Format-FileSize'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChecksumValid'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyConfigValue'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyPath'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyUnzip'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-ChocolateyWebFile'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-FtpFile'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-OSArchitectureWidth'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-PackageParameters'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-PackageParametersBuiltIn'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-ToolsLocation'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-UACEnabled'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-UninstallRegistryKey'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-VirusCheckValid'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebFile'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebFileName'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebHeaders'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-BinFile'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyEnvironmentVariable'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyExplorerMenuItem'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyFileAssociation'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyInstallPackage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPackage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPinnedTaskBarItem'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyPowershellCommand'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyShortcut'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyVsixPackage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyZipPackage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-Vsix'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Set-PowerShellExitCode'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Start-ChocolateyProcessAsAdmin'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-BinFile'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyEnvironmentVariable'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyPackage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Uninstall-ChocolateyZipPackage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Write-FunctionCallLogMessage'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Install-ChocolateyDesktopLink'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateyFailure'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Write-ChocolateySuccess'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Write-FileUpdateLog'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-AppInstallLocation'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-AvailableDriveLetter'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-EffectiveProxy'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-PackageCacheLocation'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Get-WebContent'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Register-Application'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting function 'Remove-Process'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariable'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Get-EnvironmentVariableNames'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Install-ChocolateyPath'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Set-EnvironmentVariable'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Test-ProcessAdminRights'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Uninstall-ChocolateyPath'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting cmdlet 'Update-SessionEnvironment'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting alias 'Get-ProcessorBits'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting alias 'Get-OSBitness'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting alias 'Get-InstallRegistryKey'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting alias 'Generate-BinFile'.
2024-12-10 10:04:19,743 7452 [INFO ] - VERBOSE: Exporting alias 'Add-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Exporting alias 'Start-ChocolateyProcess'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Exporting alias 'Invoke-ChocolateyProcess'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Exporting alias 'Remove-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Exporting alias 'refreshenv'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariable'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Get-EnvironmentVariableNames'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Install-ChocolateyPath'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Set-EnvironmentVariable'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Test-ProcessAdminRights'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Uninstall-ChocolateyPath'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing cmdlet 'Update-SessionEnvironment'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Format-FileSize'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-AppInstallLocation'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-AvailableDriveLetter'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-ChecksumValid'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyConfigValue'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyPath'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyUnzip'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-ChocolateyWebFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-EffectiveProxy'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-FtpFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-OSArchitectureWidth'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-PackageCacheLocation'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-PackageParameters'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-PackageParametersBuiltIn'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-ToolsLocation'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-UACEnabled'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-UninstallRegistryKey'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-VirusCheckValid'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-WebContent'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-WebFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-WebFileName'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Get-WebHeaders'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyDesktopLink'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyEnvironmentVariable'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyExplorerMenuItem'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyFileAssociation'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyInstallPackage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPackage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPinnedTaskBarItem'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyPowershellCommand'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyShortcut'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyVsixPackage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-ChocolateyZipPackage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Install-Vsix'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Register-Application'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Remove-Process'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Set-PowerShellExitCode'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Start-ChocolateyProcessAsAdmin'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Uninstall-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyEnvironmentVariable'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyPackage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Uninstall-ChocolateyZipPackage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Write-ChocolateyFailure'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Write-ChocolateySuccess'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Write-FileUpdateLog'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing function 'Write-FunctionCallLogMessage'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Add-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Generate-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Get-InstallRegistryKey'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Get-OSBitness'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Get-ProcessorBits'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Invoke-ChocolateyProcess'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'refreshenv'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Remove-BinFile'.
2024-12-10 10:04:19,758 7452 [INFO ] - VERBOSE: Importing alias 'Start-ChocolateyProcess'.
2024-12-10 10:04:19,774 7452 [DEBUG] - ---------------------------Script Execution---------------------------
2024-12-10 10:04:19,789 7452 [DEBUG] - Running 'ChocolateyScriptRunner' for GoogleChrome v131.0.6778.86 with packageScript 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1', packageFolder:'C:\ProgramData\chocolatey\lib\GoogleChrome', installArguments: '', packageParameters: '', preRunHookScripts: '', postRunHookScripts: '',
2024-12-10 10:04:19,789 7452 [DEBUG] - Running package script 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'
2024-12-10 10:04:19,836 7452 [DEBUG] - Running Install-ChocolateyPackage -url 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi' -url64bit 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' -checksum '3063058e997b15e0d4b48da063e7f2f650fcf38336cfc666dc9cdaa61ab8f495' -checksum64 '9fcf15cb2390b84887b94e8e2f41d01eff325eccdac405e4f9a156dbc209689d' -silentArgs '/quiet /norestart /l*v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"' -packageName 'googlechrome' -checksumType 'sha256' -fileType 'MSI' -validExitCodes '0' -checksumType64 'sha256' 
2024-12-10 10:04:19,852 7452 [DEBUG] - Running Get-ChocolateyWebFile -packageName 'googlechrome' -fileFullPath 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromeInstall.MSI' -url 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise.msi' -url64bit 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' -checksum '3063058e997b15e0d4b48da063e7f2f650fcf38336cfc666dc9cdaa61ab8f495' -checksumType 'sha256' -checksum64 '9fcf15cb2390b84887b94e8e2f41d01eff325eccdac405e4f9a156dbc209689d' -checksumType64 'sha256' -options 'System.Collections.Hashtable' -getOriginalFileName 'True' 
2024-12-10 10:04:19,868 7452 [DEBUG] - Running Get-OSArchitectureWidth -compare '64' 
2024-12-10 10:04:19,883 7452 [DEBUG] - CPU is 64 bit
2024-12-10 10:04:19,883 7452 [DEBUG] - Setting url to 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' and bitPackage to 64
2024-12-10 10:04:19,883 7452 [DEBUG] - Running Get-WebFileName -url 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' -defaultName 'googlechromeInstall.MSI' 
2024-12-10 10:04:20,164 7452 [DEBUG] - Using response url to determine file name. 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi'
2024-12-10 10:04:20,164 7452 [DEBUG] - File name determined from url is 'googlechromestandaloneenterprise64.msi'
2024-12-10 10:04:20,196 7452 [DEBUG] - Running Get-WebHeaders -url 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' -ErrorAction 'Stop' 
2024-12-10 10:04:20,196 7452 [DEBUG] - Setting the UserAgent to 'chocolatey command line'
2024-12-10 10:04:20,196 7452 [DEBUG] - Request Headers:
2024-12-10 10:04:20,211 7452 [DEBUG] -   'Accept':'*/*'
2024-12-10 10:04:20,211 7452 [DEBUG] -   'User-Agent':'chocolatey command line'
2024-12-10 10:04:20,805 7452 [DEBUG] - Response Headers:
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Content-Disposition':'attachment'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Content-Security-Policy':'default-src 'none''
2024-12-10 10:04:20,805 7452 [DEBUG] -   'X-Content-Type-Options':'nosniff'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'X-Frame-Options':'SAMEORIGIN'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'X-Xss-Protection':'0'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Age':'0'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Alt-Svc':'h3=":443"; ma=2592000,h3-29=":443"; ma=2592000'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Accept-Ranges':'bytes'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Content-Length':'127528960'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Cache-Control':'public,max-age=0'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Content-Type':'application/octet-stream'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Date':'Tue, 10 Dec 2024 10:04:21 GMT'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'ETag':'"396760c"'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Last-Modified':'Tue, 03 Dec 2024 04:02:18 GMT'
2024-12-10 10:04:20,805 7452 [DEBUG] -   'Server':'downloads'
2024-12-10 10:04:20,805 7452 [INFO ] - File appears to be downloaded already. Verifying with package checksum to determine if it needs to be redownloaded.
2024-12-10 10:04:20,821 7452 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi' -checksum '9fcf15cb2390b84887b94e8e2f41d01eff325eccdac405e4f9a156dbc209689d' -checksumType 'sha256' -originalUrl 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' -ErrorAction 'Stop' 
2024-12-10 10:04:20,821 7452 [WARN ] - WARNING: Ignoring checksums due to feature checksumFiles turned off or option --ignore-checksums set.
2024-12-10 10:04:20,821 7452 [DEBUG] - googlechrome's requested file has already been downloaded. Using cached copy at
 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi'.
2024-12-10 10:04:22,836 7452 [DEBUG] - No runtime virus checking built into FOSS Chocolatey. Check out Pro/Business - https://chocolatey.org/compare
2024-12-10 10:04:22,836 7452 [DEBUG] - Verifying package provided checksum of '9fcf15cb2390b84887b94e8e2f41d01eff325eccdac405e4f9a156dbc209689d' for 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi'.
2024-12-10 10:04:22,836 7452 [DEBUG] - Running Get-ChecksumValid -file 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi' -checksum '9fcf15cb2390b84887b94e8e2f41d01eff325eccdac405e4f9a156dbc209689d' -checksumType 'sha256' -originalUrl 'https://dl.google.com/dl/chrome/install/googlechromestandaloneenterprise64.msi' 
2024-12-10 10:04:22,836 7452 [WARN ] - WARNING: Ignoring checksums due to feature checksumFiles turned off or option --ignore-checksums set.
2024-12-10 10:04:22,852 7452 [DEBUG] - Running Install-ChocolateyInstallPackage -packageName 'googlechrome' -fileType 'MSI' -silentArgs '/quiet /norestart /l*v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"' -file 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi' -validExitCodes '0' -useOnlyPackageSilentArguments 'False' 
2024-12-10 10:04:22,852 7452 [DEBUG] - Running Get-OSArchitectureWidth -compare '32' 
2024-12-10 10:04:22,852 7452 [INFO ] - Installing googlechrome...
2024-12-10 10:04:22,868 7452 [DEBUG] - Ensuring 'C:\Users\Administrador\AppData\Local\Temp\chocolatey' exists
2024-12-10 10:04:22,899 7452 [DEBUG] - Running Start-ChocolateyProcessAsAdmin -validExitCodes '0' -workingDirectory 'C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86' -statements '/i "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi" /quiet /norestart /l*v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"' -exeToRun 'C:\Windows\System32\msiexec.exe' 
2024-12-10 10:04:22,899 7452 [DEBUG] - Running Test-ProcessAdminRights
2024-12-10 10:04:22,899 7452 [DEBUG] - Test-ProcessAdminRights: returning True
2024-12-10 10:04:22,899 7452 [DEBUG] - Finishing 'Test-ProcessAdminRights'
2024-12-10 10:04:22,899 7452 [DEBUG] - Elevating permissions and running ["C:\Windows\System32\msiexec.exe" /i "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi" /quiet /norestart /l*v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"]. This may take a while, depending on the statements.
2024-12-10 10:04:31,227 7452 [DEBUG] - Command ["C:\Windows\System32\msiexec.exe" /i "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi" /quiet /norestart /l*v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"] exited with '1603'.
2024-12-10 10:04:31,227 7452 [WARN ] - WARNING: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed). Please see MSI log if available. If not, try again adding '--install-arguments="'/l*v c:\GoogleChrome_msi_install.log'"'. Then search the MSI Log for "Return Value 3" and look above that for the error.
2024-12-10 10:04:31,243 7452 [ERROR] - ERROR: Running ["C:\Windows\System32\msiexec.exe" /i "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome\131.0.6778.86\googlechromestandaloneenterprise64.msi" /quiet /norestart /l*v "C:\Users\Administrador\AppData\Local\Temp\chocolatey\GoogleChrome.131.0.6778.86.MsiInstall.log"] was not successful. Exit code was '1603'. Exit code indicates the following: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed). Please see MSI log if available. If not, try again adding '--install-arguments="'/l*v c:\GoogleChrome_msi_install.log'"'. Then search the MSI Log for "Return Value 3" and look above that for the error..
2024-12-10 10:04:31,243 7452 [DEBUG] - Built-in PowerShell host called with ['[System.Threading.Thread]::CurrentThread.CurrentCulture = '';[System.Threading.Thread]::CurrentThread.CurrentUICulture = '';[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::SystemDefault; & import-module -name 'C:\ProgramData\chocolatey\helpers\chocolateyInstaller.psm1'; & 'C:\ProgramData\chocolatey\helpers\chocolateyScriptRunner.ps1' -packageScript 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1' -installArguments '' -packageParameters '' -preRunHookScripts $null -postRunHookScripts $null'] exited with '1603'.
2024-12-10 10:04:31,243 7452 [DEBUG] - Calling command ['"C:\Windows\System32\shutdown.exe" /a']
2024-12-10 10:04:31,274 7452 [DEBUG] - Command ['"C:\Windows\System32\shutdown.exe" /a'] exited with '1116'
2024-12-10 10:04:31,305 7452 [DEBUG] - Capturing package files in 'C:\ProgramData\chocolatey\lib\GoogleChrome'
2024-12-10 10:04:31,305 7452 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\GoogleChrome\GoogleChrome.nupkg'
  with checksum '7E19DDB856FD4FA6B8E8585314130F63'
2024-12-10 10:04:31,305 7452 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\GoogleChrome\googlechrome.nuspec'
  with checksum 'DDFFFA7973FCD33A4801CCD39397789D'
2024-12-10 10:04:31,305 7452 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'
  with checksum '6ED3056792A71BC596291D9E18EAA18E'
2024-12-10 10:04:31,305 7452 [DEBUG] -  Found 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\helpers.ps1'
  with checksum '2ABBC7E4384A2837486A47E0378C6CCB'
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\GoogleChrome.131.0.6778.86\.arguments".
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\GoogleChrome.131.0.6778.86\.extra".
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\GoogleChrome.131.0.6778.86\.version".
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\GoogleChrome.131.0.6778.86\.sxs".
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\GoogleChrome.131.0.6778.86\.pin".
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete file "C:\ProgramData\chocolatey\.chocolatey\GoogleChrome.131.0.6778.86\.deploymentLocation".
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to delete directory "C:\ProgramData\chocolatey\lib-bad\GoogleChrome".
2024-12-10 10:04:31,321 7452 [DEBUG] - Sending message 'HandlePackageResultCompletedMessage' out if there are subscribers...
2024-12-10 10:04:31,321 7452 [ERROR] - The install of GoogleChrome was NOT successful.
2024-12-10 10:04:31,321 7452 [ERROR] - Error while running 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'.
 See log for details.
2024-12-10 10:04:31,321 7452 [DEBUG] - Attempting to create directory "C:\ProgramData\chocolatey\lib-bad\GoogleChrome".
2024-12-10 10:04:31,321 7452 [DEBUG] - Moving C:\ProgramData\chocolatey\lib\GoogleChrome to C:\ProgramData\chocolatey\lib-bad\GoogleChrome\131.0.6778.86
2024-12-10 10:04:31,321 7452 [DEBUG] - Moving 'C:\ProgramData\chocolatey\lib\GoogleChrome'
 to 'C:\ProgramData\chocolatey\lib-bad\GoogleChrome\131.0.6778.86'
2024-12-10 10:04:33,352 7452 [WARN ] - 
Chocolatey installed 0/1 packages. 1 packages failed.
 See the log for details (C:\ProgramData\chocolatey\logs\chocolatey.log).
2024-12-10 10:04:33,352 7452 [INFO ] - 
2024-12-10 10:04:33,352 7452 [ERROR] - Failures
2024-12-10 10:04:33,352 7452 [ERROR] -  - GoogleChrome (exited 1603) - Error while running 'C:\ProgramData\chocolatey\lib\GoogleChrome\tools\chocolateyInstall.ps1'.
 See log for details.
2024-12-10 10:04:33,352 7452 [DEBUG] - Sending message 'PostRunMessage' out if there are subscribers...
2024-12-10 10:04:33,352 7452 [DEBUG] - Exiting with 1603

Anything else?

No response

Copy link

Thanks for raising this issue!

The packages within this repository are maintained by a small team of volunteer Community Maintainers, in their own time. Their time, like yours is important. Please help them by not wasting it.

This is a community repository where the expectation is that everybody will get involved by raising pull requests to fix problems they find. This will also allow that problem to be fixed more quickly as you don't have to wait for a member of the Community Maintainer Team to pick it up.

If you are unable to fix the issue yourself, the Community Maintainers Team will look at it when time allows. There are no service level agreements, nor should there be any expectation on when people can resolve issues in their own time.

A few dos and don'ts:

  • Do provide as much information as you can in any issue that you raise.
  • Don't complain that an issue has not yet been picked up or resolved. You are expected to help out in this community maintained repository. If you are unable to do so, don't complain when others don't adhere to your timelines. There is no SLA nor should you have any expectation of one.
  • Do read the CONTRIBUTING and COMMITTERS documentation before raising a pull request as it contains valuable information on what automation is used in this repository.
  • Do read the Code of Conduct.
  • Don't post your frustration in comments. The Community Maintainers Team are not a punching bag for your frustration. You will only end up banned from the repository.

Thank you.
(Automatically posted message)

@pauby
Copy link
Member

pauby commented Dec 10, 2024

As you installed the package with --ignore-checksum, you can't get a checksum error. This isn't a checksum error:

Exit code was '1603'. Exit code indicates the following: Generic MSI Error. This is a local environment error, not an issue with a package or the MSI itself - it could mean a pending reboot is necessary prior to install or something else (like the same version is already installed).

To highlight a part from the logs:

This is a local environment error, not an issue with a package or the MSI itself.

This isn't a package issue.

@pauby pauby removed the Bug label Dec 10, 2024
@pauby pauby changed the title googlechrome v 131 checksum error (googlechrome) MSI 1603 Error when installing Dec 10, 2024
@grumpy-ogre
Copy link

I've also experienced this issue. When you run the command choco install googlechrome -y --ignore-checksums it displays a UAC prompt which requires user interaction. That's why it's failing.

@pauby
Copy link
Member

pauby commented Dec 11, 2024

it displays a UAC prompt which requires user interaction. That's why it's failing.

That's not my experience. Do you have a screenshot of that?
Screenshot_20241211_123035

@arencibiafrancisco
Copy link
Author

We can close this issue, the MSI has been fixed, it works for me as well.

@grumpy-ogre
Copy link

It appears to be working as of this morning.

@pauby pauby closed this as not planned Won't fix, can't repro, duplicate, stale Dec 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants