今回はwindowsサーバを利用します.
サーバへのGoogle Chromeをインストールする
$Path = $env:TEMP; $Installer = "chrome_installer.exe"; Invoke-WebRequest "<https://dl.google.com/tag/s/appguid%3D%7B8A69D345-D564-463C-AFF1-A69D9E530F96%7D%26browser%3D0%26usagestats%3D1%26appname%3DGoogle%2520Chrome%26needsadmin%3Dprefers%26brand%3DGTPM/update2/installers/ChromeSetup.exe>" -OutFile $Path\\$Installer; Start-Process -FilePath $Path\\$Installer -Args "/silent /install" -Verb RunAs -Wait; Remove-Item $Path\\$Installer