Changes
fix to 160x errors: copy .MSI to %TEMP%
</package>
</source>
=== My fix for 160x install errors ===
I'd like to share my fix to 1606 or 1603 errors: copy install file to TEMP:
So I use:
<install cmd='%COMSPEC% /c copy %SOFTWARE%\LibreOffice_%version%_Win_x86.msi %TEMP%' />
<install cmd='msiexec /qb! /i %TEMP%\LibreOffice_%version%_Win_x86.msi ALLUSERS=1 CREATEDESKTOPLINK=1 ISCHECKFORPRODUCTUPDATES=0 REGISTER_ALL_MSO_TYPES=1 %LANG%' />
<install cmd='%COMSPEC% /c del %TEMP%\LibreOffice_%version%_Win_x86.msi' />
This have another benefit: less networking traffic!
=== Common Installer Options ===