PowerShell 技能连载 - 通过 PowerShell 安装 Google Chrome

要下载并安装谷歌Chrome浏览器,只需几个常见的 PowerShell 命令组合:

1
2
3
4
5
$Installer = "$env:temp\chrome_installer.exe"
$url = 'http://dl.google.com/chrome/install/375.126/chrome_installer.exe'
Invoke-WebRequest -Uri $url -OutFile $Installer -UseBasicParsing
Start-Process -FilePath $Installer -Args '/silent /install' -Wait
Remove-Item -Path $Installer

PowerShell 技能连载 - 通过 PowerShell 安装 Google Chrome

http://blog.vichamp.com/2019/07/23/installing-google-chrome-via-powershell/

作者

吴波

发布于

2019-07-23

更新于

2022-07-06

许可协议

评论