How to install Google Chrome using PowerShell

自動翻訳(Auto Translation)

What to do if you want to install Google Chrome without using an Internet browser (IE or Edge)

Notes.

Windows PowerShell” is required to perform the method in this article.

Windows PowerShell” is installed by default on Windows 10 (version 1607) or later and Windows Server 2016 or later, but must be installed manually on other environments.

See “System Requirements for Windows PowerShell” for details.

How to install with “Windows PowerShell

Copy and execute the following code in PowerShell.

PowerShell$Path
= $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "https://dl.google.com/tag/s/appguid={8A69D345-D564- 463C-AFF1-A69D9E530F96}&browser=0&usagestats=1&appname=Google%20Chrome&needsadmin=prefers&brand=GTPM/update2/installers/ ChromeSetup.exe" -OutFile $Path$Installer; Start-Process -FilePath $Path$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $ Path$Installer

After downloading with PowerShell, the installer will automatically start. When the User Account Control screen appears, click “Yes” to continue the installation.

After a while, the installation of Google Chrome will be completed automatically.

    この記事は役に立ちましたか?


    広告ブロック機能を検知しました

    このウェブサイトは広告収益によって成り立っています。ご協力をお願いします。