把 Windows 2012 服务器当客户机用是非常难用的,因为安全上的设置, IE浏览器超难用。一直弹窗不说, 还不让你下载。
[bash]
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "http://dl.google.com/chrome/install/375.126/chrome_installer.exe" -OutFile $Path\$Installer; Start-Process -FilePath $Path\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\$Installer
[/bash]
Feng
没有评论:
发表评论