PDA

View Full Version : MSI packs, updating



NewsArchive
06-20-2008, 02:25 AM
When I send an update out as MSI pack, and want to run it silent, it needs
an extra parameter to get allowed to owervrite the old .exe files (And
perhaps the dll's too).

I remember, that you gave me the syntax quite a while ago, but I cannot find
it, and my MSI packs has grovn so mature now, that they need updates now and
again.

Best regards

Edvard Korsbęk

NewsArchive
06-20-2008, 02:25 AM
Hi Edvard,

> When I send an update out as MSI pack, and want to run it silent, it needs
> an extra parameter to get allowed to owervrite the old .exe files (And
> perhaps the dll's too).
>
> I remember, that you gave me the syntax quite a while ago, but I cannot
> find it, and my MSI packs has grovn so mature now, that they need updates
> now and again.

This was for the "silent" install:

test.msi /quiet INSTALLDIR=c:\test DATAFOLDER=c:\data

And this for the reinstall:

msiexec.exe -i bbjprg.msi REINSTALL=ALL REINSTALLMODE=vomus

Does this help?

Friedrich

--
Friedrich Linder
Lindersoft
www.lindersoft.com
+1.954.252.3910

"point. click. ship" - that's SetupBuilder
Create Windows Vista ready installations in minutes

-- Official Comodo Code Signing and SSL Certificate Partner

NewsArchive
06-21-2008, 12:19 PM
msiexec.exe -i bbjprg.msi /quiet REINSTALL=ALL REINSTALLMODE=vomus

Found it...

Edvard

NewsArchive
06-21-2008, 12:20 PM
> msiexec.exe -i bbjprg.msi /quiet REINSTALL=ALL REINSTALLMODE=vomus
>
> Found it...

Correct :)

Friedrich