Install Google Chrome Silently
Super simple procedure that silently installs Google Chrome. Downloads the most current x64 MSI from:
https://enterprise.google.com/chrome/chrome-browser/
Install Google Chrome Silently has no reviews.
Figured out a solution. There was an issue with the MSI after it was redirected to c:\temp. I ended up putting a copy of it on a server in a shared folder and altered the script to point there and removed the bit about downloading it at all. That has been successful for me.
Below is the script as I ended up using it.
<?xml version="1.0" encoding="utf-8"?>
<ScriptExport xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.kaseya.com/vsa/2008/12/Scripting">
<Procedure name="Chrome Silent" treePres="3" id="70012247" folderId="318084187348412" treeFullPath="Ontara.Installation">
<Body description="Silently installs Google Chrome. Downloads the most current MSI from:
https://enterprise.google.com/chrome/chrome-browser/">
</Statement>
<Statement name="Install MSI" continueOnFail="false" osType="Windows">
<Parameter xsi:type="StringParameter" name="Parameter1" value="\\SERVERNAME\%FILEPATH%\googlechromestandaloneenterprise64.msi" />
<Parameter xsi:type="StringParameter" name="Parameter2" value="True" />
<Parameter xsi:type="StringParameter" name="Parameter3" value="True" />
</Statement>
</Body>
</Procedure>
</ScriptExport>
Replace "SERVERNAME" with your server's name, and "%FILEPATH%" with the appropriate path for where you've placed the MSI.
This didn't install the newest version for me. Do we need to edit the URL to point to a different package? Where did you find the original link?