Providing Free and Editor Tested Software Downloads
< HOME | TUTORIALS | GEEK-CADE| WEB TOOLS | YOUTUBE | NEWSLETTER | DEALS! | FORUMS | >

MajorGeeks.com - It's Geekalicious.

Software Categories

All In One Tweaks
Android
Antivirus & Malware
Appearance
Back Up
Browsers
CD\DVD\Blu-Ray
Covert Ops
Drivers
Drives (SSD, HDD, USB)
Games
Graphics & Photos
Internet Tools
Linux Distros
MajorGeeks Windows Tweaks
Multimedia
Networking
Office & Productivity
System Tools

Other news

· How To and Tutorials
· Life Hacks and Reviews
· Way Off Base
· MajorGeeks Deals
· News
· Off Base
· Reviews




spread the word

· YouTube
· Facebook
· Instagram
· Twitter
· Pintrest
· RSS/XML Feeds
· News Blur
· Yahoo
· Symbaloo

about

· Top Freeware Picks
· Malware Removal
· Geektionary
· Useful Links
· About Us
· Copyright
· Privacy
· Terms of Service
· How to Uninstall

top downloads

1. GS Auto Clicker
2. Macrium Reflect FREE Edition
3. Smart Defrag
4. Visual C++ Redistributable Runtimes AIO Repack
5. Sergei Strelec's WinPE
6. Visual C++ Runtime Installer (All-In-One)
7. MusicBee
8. FlyOobe / Flyby11
9. Format Factory
10. McAfee Removal Tool (MCPR)
More >>

top reads

Star 5 Hidden Windows Tools You’ve Had All Along But Never Use

Star Use the Windows 10 Media Creation Tool Before Support Ends For Windows 10 in 2025

Star Fedora 42 - It Might Be the Prettiest Linux Yet

Star How to Set Up an Automatic Backup Plan In a Few Clicks

Star How To Skip Windows 11 Hardware Checks & Keep Windows 10 in 2025 - The Ultimate Guide

Star Star Trek Fleet Command Promo Codes: Redeem Codes for Free Shards, Blueprints And Resources

Star How to Disable 1-Click Ordering on Amazon (and Avoid Surprise Charges)

Star How to Fix Shallow Paint Layer Depth in Bambu Studio

Star Windows Recall: What It Is, Why Hackers Will Love It, and How to Stay Safe

Star How To Use VLC Media Player to Trim Video Clips


MajorGeeks.Com » Overview» Tutorials and Video Guides » How to Install Google Chrome With PowerShell

How to Install Google Chrome With PowerShell

By Timothy Tibbetts

on 06/28/2023

IObit Mid-Year Sale: 90% OFF + Mystery Treat Experience faster surfing, smarter security, and total privacy with IObit Pro,
now yours at 90% OFF plus a mystery treat!

Here's a fun trick for PowerShell geeks. By using a line of code we provide, you can install Google Chrome in minutes.

You might be wondering why, and our first response would be, "Why not?" But, if you have this code handy, many technicians who plan to install Google Chrome will appreciate saving the extra step of going to Google, downloading, and running the installer.

Video tutorial:



Open PowerShell as Administrator and copy and paste:


$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('https://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir$ChromeInstaller"); & "$LocalTempDir$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)


You will see Still running: ChromeInstaller numerous times.

When the code stops running, you should see the Google Chrome shortcut on your Desktop with the latest version installed.



Enjoy.

This code is included as part of MajorGeeks Windows Tweaks.

Similar:
The Ultimate List of Every Known Command Prompt and PowerShell Commands
How to Customize Fonts, Colors, Window Size and More With Powershell or Command Prompt
How to View, Save, and Clear Your PowerShell and Command Prompt History
How to Add 'Open PowerShell Window Here' as Administrator Context Menu
How to Disable the Command Prompt in Windows 10

comments powered by Disqus




© 2000-2025 MajorGeeks.com
Powered by Contentteller® Business Edition