I have been trying to automate installation of LibreOffice 3.4.3 from a script to silently deploy to multiple computers. In our configuration applications get installed to D:\apps It seems that the below msiexec INSTALLDIR parameter is ignored with the current LibreOffice 3.4.3 Release package. msiexec /i libreoffice34.msi INSTALLDIR="d:\apps\LibreOffice" /qr I have tried with the standard Windows Installer 3 and I have upgraded to the latest 4.5 installer. Both have the issue. I think this is a problem with the msi package rather than the computers. This is because other MSI packages happily install using this parameter.
There is no INSTALLDIR custom property in libreoffice34.msi. You should have used the INTALLLOCATION custom property, that is what we have instead. The command msiexec /i libreoffice34.msi INSTALLLOCATION="d:\apps\LibreOffice" /qr works fine.
Thanks for that. Is this documented anywhere? I couldn't find it when I was searching. Thanks Chris On 24 October 2011 13:41, <bugzilla-daemon@freedesktop.org> wrote: > https://bugs.freedesktop.org/show_bug.cgi?id=41994 > > Andras Timar <timar74@gmail.com> changed: > > What |Removed |Added > > ---------------------------------------------------------------------------- > Status|UNCONFIRMED |RESOLVED > Resolution| |NOTABUG > > --- Comment #1 from Andras Timar <timar74@gmail.com> 2011-10-24 05:41:09 > PDT --- > There is no INSTALLDIR custom property in libreoffice34.msi. You should > have > used the INTALLLOCATION custom property, that is what we have instead. > > The command > > msiexec /i libreoffice34.msi INSTALLLOCATION="d:\apps\LibreOffice" /qr > > works fine. > > -- > Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email > ------- You are receiving this mail because: ------- > You are on the CC list for the bug. > You reported the bug. >
(In reply to comment #2) > Thanks for that. > > Is this documented anywhere? http://wiki.services.openoffice.org/wiki/Documentation/How_Tos/Automatic_Installation_on_Windows Surely, we need to document it better in LibreOffice wiki ASAP.