Google Chrome v75 Silent Install (How-To Guide)

Google Chrome is a popular web browser developed by Google. This article will serve as an informative guide and give you a clear understanding of how to perform a silent installation of Google Chrome Enterprise v75 from the command line using the MSI installer.

How to Install Google Chrome Enterprise Silently

Google Chrome Enterprise v75 (32-bit) Silent Install (MSI)

  1. Navigate to: https://cloud.google.com/chrome-enterprise/browser/download
  2. Scroll down to Update Chrome Browser section
  3. Select the Chrome MSI for Windows 32-bit download
  4. Download the file to a folder created at (C:\Downloads)
  5. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  6. Navigate to the C:\Downloads folder
  7. Enter the following command: 
    • MsiExec.exe /i googlechromestandaloneenterprise.msi /qn
  8. Press Enter

After a minute or so you should see the Google Chrome Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Google Chrome Enterprise 75.0.3770.100 32-bit

Software Title:Google Chrome Enterprise (32-bit)
Vendor:Google LLC
Version:75.0.3770.100
Architecture:x86
Installer Type:MSI
Silent Install Switch:MsiExec.exe /i googlechromestandaloneenterprise.msi /qn
Silent Uninstall Switch:MsiExec.exe /x {E229A6DF-8FB4-3BCD-9A31-60B34633B160} /qn
Repair Command:MsiExec.exe /fa {E229A6DF-8FB4-3BCD-9A31-60B34633B160} /qn
Download Link:https://cloud.google.com/chrome-enterprise/browser/download
PowerShell Script:https://silentinstallhq.com/google-chrome-install-and-uninstall-powershell/

Google Chrome Enterprise 75.0.3770.142 32-bit

Software Title:Google Chrome Enterprise (32-bit)
Vendor:Google LLC
Version:75.0.3770.142
Architecture:x86
Installer Type:MSI
Silent Install Switch:MsiExec.exe /i googlechromestandaloneenterprise.msi /qn
Silent Uninstall Switch:MsiExec.exe /x {2FBA2EEB-6E0F-3F3D-B01F-00C4DD6A6BC5} /qn
Repair Command:MsiExec.exe /fa {2FBA2EEB-6E0F-3F3D-B01F-00C4DD6A6BC5} /qn
Download Link:https://cloud.google.com/chrome-enterprise/browser/download
PowerShell Script:https://silentinstallhq.com/google-chrome-install-and-uninstall-powershell/

Google Chrome Enterprise v75 (64-bit) Silent Install (MSI)

  1. Navigate to:
  2. Scroll down to Update Chrome Browser section
  3. Select the Chrome MSI for Windows 64-bit download
  4. Download the file to a folder created at (C:\Downloads)
  5. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  6. Navigate to the C:\Downloads folder
  7. Enter the following command: 
    • MsiExec.exe /i googlechromestandaloneenterprise64.msi /qn
  8. Press Enter

After a minute or so you should see the Google Chrome Desktop Shortcut appear. You will also find entries in the Start Menu, Installation Directory, and Programs and Features in the Control Panel.

Google Chrome Enterprise 75.0.3770.100 64-bit

Software Title:Google Chrome Enterprise (64-bit)
Vendor:Google LLC
Version:75.0.3770.100
Architecture:x64
Installer Type:MSI
Silent Install Switch:MsiExec.exe /i googlechromestandaloneenterprise64.msi /qn
Silent Uninstall Switch:MsiExec.exe /x {7F544E85-3FC4-3F6B-BE1C-679880E73AD3} /qn
Repair Command:MsiExec.exe /fa {7F544E85-3FC4-3F6B-BE1C-679880E73AD3} /qn
Download Link:https://cloud.google.com/chrome-enterprise/browser/download

Google Chrome Enterprise 75.0.3770.142 64-bit

Software Title:Google Chrome Enterprise (64-bit)
Vendor:Google LLC
Version:75.0.3770.142
Architecture:x64
Installer Type:MSI
Silent Install Switch:MsiExec.exe /i googlechromestandaloneenterprise64.msi /qn
Silent Uninstall Switch:MsiExec.exe /x {04DBEDAC-DFA9-3823-937A-FE754A7AD6F7} /qn
Repair Command:MsiExec.exe /fa {04DBEDAC-DFA9-3823-937A-FE754A7AD6F7} /qn
Download Link:https://cloud.google.com/chrome-enterprise/browser/download

The information above provides a quick overview of the software title, vendor, silent install, and silent uninstall switches. The download links provided take you directly to the vendors website. Continue reading if you are interested in additional details and configurations.


Additional Configurations

Disable Google Chrome Auto-Update

  1. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  2. Enter Each of the following commands One at a Time & press Enter:

REG ADD "HKLM\SOFTWARE\Policies\Google\Update" /v UpdateDefault /t REG_DWORD /d 0 /f
REG ADD "HKLM\SOFTWARE\Policies\Google\Update" /v DisableAutoUpdateChecksCheckboxValue /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Policies\Google\Update" /v AutoUpdateCheckPeriodMinutes /t REG_DWORD /d 0 /f
REG ADD "HKLM\SOFTWARE\Wow6432Node\Google\Update" /v UpdateDefault /t REG_DWORD /d 0 /f
REG ADD "HKLM\SOFTWARE\Wow6432Node\Google\Update" /v DisableAutoUpdateChecksCheckboxValue /t REG_DWORD /d 1 /f
REG ADD "HKLM\SOFTWARE\Wow6432Node\Google\Update" /v AutoUpdateCheckPeriodMinutes /t REG_DWORD /d 0 /f


Create an Installation Log File

The MSI installer offers the option to generate a log file during installation to assist with troubleshooting should any problems arise. You can use the following commands to create a verbose log file with details about the installation.

Google Chrome Enterprise v75 (32-bit) Silent Install w/ Logging

MsiExec.exe /i googlechromestandaloneenterprise.msi /qn /L*V "%WINDIR%\Temp\Chrome-Install.log"

Google Chrome Enterprise v75 (64-bit) Silent Install w/ Logging

MsiExec.exe /i googlechromestandaloneenterprise64.msi /qn /L*V "%WINDIR%\Temp\Chrome-Install.log"

How to Uninstall Google Chrome Enterprise Silently

Google Chrome Enterprise (MSI)

  1. Open an Elevated Command Prompt by Right-Clicking on Command Prompt and select Run as Administrator
  2. Enter one of the following commands:
    • Google Chrome Enterprise 75.0.3770.100 (32-bit)
    • MsiExec.exe /x {E229A6DF-8FB4-3BCD-9A31-60B34633B160} /qn
    • Google Chrome Enterprise 75.0.3770.142 (32-bit)
    • MsiExec.exe /x {2FBA2EEB-6E0F-3F3D-B01F-00C4DD6A6BC5} /qn
    • Google Chrome Enterprise 75.0.3770.100 (64-bit)
    • MsiExec.exe /x {7F544E85-3FC4-3F6B-BE1C-679880E73AD3} /qn
    • Google Chrome Enterprise 75.0.3770.142 (64-bit)
    • MsiExec.exe /x {04DBEDAC-DFA9-3823-937A-FE754A7AD6F7} /qn
  3. Press Enter

Always make sure to test everything in a development environment prior to implementing anything into production. The information in this article is provided “As Is” without warranty of any kind.

Jason Bergner

I am an accomplished Software Engineer at Patch My PC, leveraging more than 18 years of hands-on experience in Configuration Manager administration and application packaging. I am driven by a genuine passion for solving complex problems and consistently strive to discover innovative and effective solutions. Sharing my extensive knowledge of application deployments is a true joy for me, and I am honored to contribute to the community here at Silent Install HQ.

Recent Posts