Changes
alternate install package
<install cmd="%SOFTWARE%\google-earth\GoogleEarth.exe -s -f1%SOFTWARE%\google-earth\setup.iss -f2C:\Logs\google-earth.log" />
</package>
</pre>
As recording setup.iss didn't work I found the following solution. First start the install manually and get the contents of the Folder with "google earth.msi" from your local Temp directory and store this to your packages/googleearth directory.
<pre>
<package
id="googleearth"
name="Google Earth"
revision="1"
reboot="false"
priority="100">
<check type="uninstall" condition="exists" path="Google Earth" />
<install cmd='msiexec /qb /l* %SystemDrive%\netinst\logs\googleearth.txt /i "%SOFTWARE%\googleearth\google earth.msi"' />
<upgrade cmd='msiexec /qb /l* %SystemDrive%\netinst\logs\googleearth.txt /i "%SOFTWARE%\googleearth\google earth.msi"' />
<remove cmd='MsiExec.exe /qb /x {1E04F83B-2AB9-4301-9EF7-E86307F79C72}' >
<exit code="0" />
<exit code="1605" reboot="true" />
</remove>
</package>
</pre>
[[Category:Silent Installers]]