静默按安装Chrome浏览器

Posted on 2019-07-26 20:15  努力成长静待花开  阅读(2579)  评论(0编辑  收藏  举报

效果图:

  

实现代码:

$Install="$env:TEMP\chrome_install.exe"
$url='http://dl.google.com/chrome/install/375.126/chrome_installer.exe'
Invoke-RestMethod -uri $url -OutFile $Install -UseBasicParsing
Start-Process $Install -ArgumentList '/silent /install' -Wait
Remove-Item -Path $Install