Google Chrome is the world’s most widely used browser and a standard deployment requirement in most enterprise environments. This guide covers everything IT administrators need to deploy Google Chrome silently via SCCM, Intune, Group Policy and PowerShell in 2026, including ADMX templates for policy management.
Download Google Chrome MSI Installer
Google provides official MSI installers for enterprise deployment. Always download directly from Google’s enterprise page at chromeenterprise.google. Download the 64-bit MSI for modern environments or the 32-bit MSI only if you still have 32-bit Windows machines.
Silent Installation Command Line Switches
msiexec /i GoogleChromeStandaloneEnterprise64.msi /qn /norestartmsiexec /i GoogleChromeStandaloneEnterprise64.msi /qn /norestart /l*v "C:\Logs\ChromeInstall.log"Deploy Google Chrome via SCCM
- Download the Chrome Enterprise MSI from the link above
- In the SCCM console go to Software Library → Application Management → Applications
- Click Create Application → select Windows Installer (*.msi file)
- Browse to your MSI file — SCCM will auto-populate most fields
- Set the installation program to:
msiexec /i GoogleChromeStandaloneEnterprise64.msi /qn /norestart - Set the detection method — check for registry key
HKLM\SOFTWARE\Google\Chrome - Deploy to your target collection
Deploy Google Chrome via Intune
- In the Intune portal go to Apps → Windows → Add
- Select Line-of-business app
- Upload the Chrome MSI file
- Set the install command:
msiexec /i GoogleChromeStandaloneEnterprise64.msi /qn /norestart - Assign to your device or user groups
Deploy Google Chrome via Group Policy
- Copy the MSI to a network share accessible by all machines
- Open Group Policy Management Console
- Create or edit a GPO linked to your target OU
- Navigate to Computer Configuration → Policies → Software Settings → Software Installation
- Right-click → New → Package → select the MSI from the network share
- Select Assigned as the deployment method
Deploy Google Chrome via PowerShell
$msiPath = "\server\share\GoogleChromeStandaloneEnterprise64.msi"
$arguments = "/i `"$msiPath`" /qn /norestart /l*v C:\Logs\ChromeInstall.log"
Start-Process -FilePath "msiexec.exe" -ArgumentList $arguments -Wait -NoNewWindowManage Chrome with ADMX Group Policy Templates
Download Chrome ADMX templates from the Chrome Enterprise page and copy to \domain\SYSVOL\domain\Policies\PolicyDefinitions\. Key policies available include setting homepage, disabling incognito mode, blocking URLs, managing extensions and controlling updates.
Disable Chrome Auto-Updates
reg add "HKLM\SOFTWARE\Policies\Google\Update" /v "AutoUpdateCheckPeriodMinutes" /t REG_DWORD /d 0 /fFrequently Asked Questions
What is the difference between Chrome MSI and the standard installer?
The standard Chrome installer is for single users. The Chrome MSI installs system-wide for all users and supports silent installation, Group Policy management via ADMX templates, and management by SCCM and Intune.
Does Chrome MSI support silent installation?
Yes — use msiexec /i GoogleChromeStandaloneEnterprise64.msi /qn /norestart for completely silent installation with no user interaction.
How do I check the Chrome version via PowerShell?
Run: (Get-Item C:\Program Files\Google\Chrome\Application\chrome.exe).VersionInfo.ProductVersion
Can I deploy Chrome extensions via Group Policy?
Yes — using Chrome ADMX templates navigate to Computer Configuration then Administrative Templates then Google Chrome then Extensions and add your extension ID and update URL.
How do I silently uninstall Chrome?
Find the product code using Get-WmiObject Win32_Product then run: msiexec /x {PRODUCT-CODE} /qn /norestart
About The Author
Discover more from TechyGeeksHome
Subscribe to get the latest posts sent to your email.
