Chrome Offline Installer
The standard Chrome installer is a small “stub” that downloads the rest of the browser from Google during setup. The offline installer (also called the standalone installer) is the full installation file in one piece. Use it when you cannot rely on internet during install, or when you need to push Chrome to many machines.
Download the Offline Installer
Pick the version that matches what you need:
- Windows, current user only (no admin needed): google.com/chrome/?standalone=1
- Windows, all users (requires admin): google.com/chrome/?standalone=1&system=true
- Enterprise MSI bundle (32-bit, 64-bit, ARM64, plus policy templates): chromeenterprise.google/browser/download
Each Windows download is a single .exe file roughly 100 MB in size. The MSI bundle is somewhat larger because it contains every architecture.
When to Use the Offline Installer
- Installing Chrome on a computer with no internet access
- Installing Chrome on many machines without re-downloading each time
- Slow, unreliable, or metered connections where the stub installer keeps failing
- Corporate networks that block downloads from
dl.google.com - Building Windows imaging baselines or kiosk machines
How to Use the Offline Installer
- On a computer with internet access, download the offline installer using one of the links above
- Copy the .exe (or .msi) to a USB drive, network share, or your imaging tool
- Run the installer on the target computer. It will not need to fetch anything from Google during install.
- Chrome launches and offers to import bookmarks and passwords as usual
Per-User vs All-Users Install
The standard download installs Chrome to C:\Users\YourName\AppData\Local\Google\Chrome, only for the user who runs the installer. The all-users version installs to C:\Program Files\Google\Chrome and is available to every account on the PC. Pick the all-users version for shared family computers, lab machines, or any deployment where you need a single managed install.
Mac and Linux Installers Are Already Offline
The standard Mac DMG and the Linux .deb / .rpm packages are full installers. They contain the entire browser and do not download anything during install. Just download once on a connected machine, copy the file across, and install as normal. See Chrome for Mac and Chrome for Linux for the install steps.
Verify the Download
If you are deploying widely, confirm the file is intact before pushing it out. On Windows PowerShell:
Get-FileHash .\ChromeStandaloneSetup64.exe -Algorithm SHA256On macOS or Linux:
shasum -a 256 ChromeSetup.exeCompare the hash against a known-good copy from a trusted machine, or against the value Google publishes with enterprise releases.
Silent Install for Mass Deployment
The MSI installer supports standard Windows Installer command-line switches. A typical silent deployment looks like this:
msiexec /i GoogleChromeStandaloneEnterprise64.msi /qn /norestartUse this with Group Policy, SCCM, Intune, PDQ Deploy, or any other software distribution tool. The Chrome Enterprise documentation covers ADMX templates for managing settings after install.
Update Behaviour
Chrome installed from the offline installer behaves exactly the same as the regular install: it updates itself in the background through Google Update. You only need the offline installer for the initial deployment. See our update guide for managing updates across a fleet.