13 Jun Winget Chrome: Everything You Need to Know About Installing Chrome With Winget
Installing Google Chrome on Windows has traditionally meant opening a browser, searching for the installer, downloading an executable file, and clicking through setup prompts. With Windows Package Manager, commonly known as Winget, that process becomes faster, cleaner, and easier to repeat. For individuals, IT teams, developers, and system administrators, using Winget Chrome commands can simplify Chrome installation, updates, and device setup.
TLDR: Winget allows Google Chrome to be installed from the command line on Windows using a simple command such as winget install Google.Chrome. It is useful for quick setup, automation, and managing software without manually downloading installers. Chrome can also be updated, searched for, or removed through Winget. For most modern Windows 10 and Windows 11 systems, Winget is already included or can be installed through the App Installer package.
What Is Winget?
Winget is Microsoft’s official command-line package manager for Windows. It allows software to be discovered, installed, upgraded, configured, and removed through terminal commands. Instead of manually visiting software websites, users can install applications from a verified package repository using short commands.
Winget is especially useful because it brings a package-management experience to Windows that is similar to tools commonly found on Linux and macOS. Software such as Google Chrome, Visual Studio Code, Mozilla Firefox, 7-Zip, Git, VLC, and many other applications can be installed with just a few keystrokes.
For Google Chrome specifically, Winget provides a direct way to install the official Chrome browser package by referencing its package ID: Google.Chrome.
Why Install Chrome With Winget?
Installing Chrome with Winget offers several advantages over the traditional download-and-click method. While downloading Chrome from Google’s website still works well, Winget is often faster and more suitable for repeatable workflows.
- Speed: Chrome can be installed with a single command.
- Automation: Setup scripts can include Chrome installation as part of a larger configuration process.
- Consistency: The same command can be used across many Windows devices.
- Reduced manual steps: There is no need to open a browser, search, download, and run an installer manually.
- Easy updates: Winget can check for and install available application upgrades.
For IT departments, Winget can reduce setup time when preparing new machines. For developers, it can be included in onboarding scripts. For everyday users, it simply provides a clean and efficient way to get Chrome installed.
Checking Whether Winget Is Installed
Before installing Chrome with Winget, the system must have Winget available. Most current versions of Windows 11 and updated versions of Windows 10 already include it through the Microsoft App Installer package.
To check whether Winget is installed, a person can open Windows Terminal, Command Prompt, or PowerShell and run:
winget --version
If Winget is installed, the terminal displays a version number. If the command is not recognized, the App Installer package may need to be installed or updated from the Microsoft Store.
In managed business environments, administrators may also need to confirm that Winget has not been disabled by policy. Some organizations restrict package managers to maintain tighter software control.
How to Search for Google Chrome in Winget
Before installing an application, Winget can search the repository to confirm the correct package name and ID. For Chrome, the search command is:
winget search chrome
This command may return several results, including Google Chrome, Chrome Beta, Chrome Dev, or other tools with similar names. The stable version of Google Chrome usually appears with the package ID:
Google.Chrome
The package ID is important because it identifies the exact application Winget should install. Using the ID reduces ambiguity and helps prevent the wrong package from being selected.
How to Install Chrome With Winget
The most common command for installing Google Chrome with Winget is:
winget install Google.Chrome
Winget then locates the Chrome package, downloads the installer, verifies the source information, and starts the installation process. Depending on system settings, a User Account Control prompt may appear. Once approved, Chrome installs like a normal Windows application.
For a more explicit command, the package ID can be specified with the --id option:
winget install --id Google.Chrome
To make sure Winget does not accidentally choose a similarly named package, the --exact option can be added:
winget install --id Google.Chrome --exact
This is often considered the best approach for scripts and automated installations because it targets the exact package.
Installing Chrome Silently With Winget
In some cases, a silent installation is preferred. A silent install reduces or removes interactive prompts, which is helpful for automation and deployment scenarios. Winget supports a silent mode with the --silent option:
winget install --id Google.Chrome --exact --silent
This command attempts to install Chrome without user interaction. However, silent behavior can depend on installer support, permissions, and organizational device policies. Administrative approval may still be required in some environments.
For enterprise deployment, Winget may be used alongside other tools such as Microsoft Intune, PowerShell scripts, provisioning packages, or configuration management systems. In those cases, testing the command on a sample device before broad deployment is strongly recommended.
Installing a Specific Chrome Channel
Google offers multiple Chrome release channels. The standard command installs the stable version, which is recommended for most users. However, Winget may also list other Chrome channels depending on repository availability.
- Stable: Best for normal daily browsing and business use.
- Beta: Offers upcoming features with moderate risk.
- Dev: Includes newer experimental changes and may be less stable.
- Canary: Updated frequently and mainly intended for testing.
To see available Chrome-related packages, the search command can be used again:
winget search Google.Chrome
For most installations, Google.Chrome remains the safest and most appropriate choice.
How to Update Chrome With Winget
Google Chrome typically updates itself in the background, but Winget can also be used to check for available updates. To list upgradeable packages, the command is:
winget upgrade
If Chrome appears in the list, it can be upgraded with:
winget upgrade --id Google.Chrome --exact
To upgrade all available applications managed through Winget, the following command can be used:
winget upgrade --all
Although Chrome has its own update mechanism, Winget upgrades are useful for users who want a centralized software update workflow. IT teams may also prefer this approach when checking application versions across devices.
How to Uninstall Chrome With Winget
Winget can also remove Chrome from a Windows system. The uninstall command is:
winget uninstall --id Google.Chrome --exact
This launches the uninstall process for Google Chrome. Depending on the existing installation and system configuration, Chrome user data may remain on the device after uninstalling. Bookmarks, profiles, cached files, and other browser data may need to be removed separately if a full cleanup is required.
Useful Winget Chrome Command Examples
The following list summarizes the most useful Winget commands for Chrome:
- Check Winget version:
winget --version - Search for Chrome:
winget search chrome - Install Chrome:
winget install Google.Chrome - Install Chrome by exact ID:
winget install --id Google.Chrome --exact - Install Chrome silently:
winget install --id Google.Chrome --exact --silent - Check for upgrades:
winget upgrade - Upgrade Chrome:
winget upgrade --id Google.Chrome --exact - Uninstall Chrome:
winget uninstall --id Google.Chrome --exact
Common Problems and Fixes
Although Winget is straightforward, issues can occur. The most common problems usually involve missing Winget installations, permissions, source errors, or network restrictions.
Winget Is Not Recognized
If the terminal shows that winget is not recognized, the App Installer package may be missing or outdated. Updating or installing App Installer from the Microsoft Store usually resolves the issue. On some corporate devices, an administrator may need to enable access.
No Package Found
If Winget cannot find Google Chrome, the package sources may need to be refreshed. The following command can help:
winget source update
After the source update completes, the Chrome search or install command can be tried again.
Installation Fails Because of Permissions
Chrome installation may require elevated privileges depending on whether it is being installed for the current user or all users. Running the terminal as an administrator can resolve many permission-related installation failures.
Network or Proxy Restrictions
In business networks, firewalls, proxies, or security tools may block package downloads. Administrators may need to allow Winget sources and Google download endpoints for the installation to complete successfully.
Is Winget Safe for Installing Chrome?
Winget is generally considered safe when packages are installed from trusted sources and official package IDs are used. The Microsoft community repository contains manifests that define where installers come from, how they are identified, and how they should be installed.
However, safe usage still depends on careful command selection. Searching for packages, confirming the publisher, and using exact package IDs are good practices. For Chrome, using Google.Chrome helps ensure the official Google Chrome package is selected.
Organizations should also review package management policies and software approval rules before allowing Winget installations at scale.
Who Should Use Winget to Install Chrome?
Winget is useful for many types of Windows users. A home user may appreciate the speed of installing Chrome from a terminal. A developer may include Chrome in a machine setup script. An IT administrator may use Winget as part of a standardized deployment process for new employees.
It is especially valuable when several applications need to be installed at once. For example, a setup script might install Chrome, Git, Visual Studio Code, and other essential tools in minutes. This makes Winget a practical option for repeatable Windows configuration.
Best Practices for Winget Chrome Installation
- Use the exact package ID: The safest command is usually
winget install --id Google.Chrome --exact. - Run Terminal as administrator when needed: This can prevent permission errors.
- Update Winget sources: If packages do not appear, run
winget source update. - Test scripts first: Automated installations should be tested before wide deployment.
- Review organizational policies: Businesses should confirm that Winget use aligns with security requirements.
Conclusion
Installing Chrome with Winget is one of the simplest ways to get Google’s browser onto a Windows device. With a command such as winget install --id Google.Chrome --exact, the installation process becomes fast, repeatable, and easy to automate. Winget also supports searching, upgrading, and uninstalling Chrome, making it more than just a one-time installation tool.
For individual users, Winget saves time. For developers and administrators, it supports consistent setup workflows. As Windows package management continues to mature, Winget is likely to become an increasingly common method for installing essential applications like Google Chrome.
FAQ
What is the Winget command to install Chrome?
The standard command is winget install Google.Chrome. For a more precise installation, winget install --id Google.Chrome --exact is recommended.
Does Winget install the official Google Chrome browser?
Yes, when the package ID Google.Chrome is used, Winget installs the official Google Chrome package listed in the Windows Package Manager repository.
Is Winget available on Windows 10?
Yes. Winget is available on supported Windows 10 versions, usually through the App Installer package. It is also included on most Windows 11 systems.
Can Chrome be updated with Winget?
Yes. Chrome can be updated with winget upgrade --id Google.Chrome --exact. Chrome also includes its own automatic update system.
Can Winget install Chrome silently?
Yes. The command winget install --id Google.Chrome --exact --silent attempts a silent installation, although permissions and system policies may still affect the process.
Why is Winget not recognized in the terminal?
If Winget is not recognized, the App Installer package may be missing, outdated, or disabled by policy. Updating App Installer from the Microsoft Store often fixes the problem.
Can Chrome be removed using Winget?
Yes. Chrome can be removed with winget uninstall --id Google.Chrome --exact. Some user data may remain and may need to be deleted separately.
Sorry, the comment form is closed at this time.