0

I use use the Wix Installer to create a setup for my application. I use the Bootstrapper for the Visual Studio 2005 and 2008 runtimes, so I get a setup.exe and a product.msi. Now I try to use the Minor Update mechanism, like described here: How to implement WiX installer upgrade?

For the minor Update I have to rum the Installer with this command:

msiexec /i SampleUpgrade.msi REINSTALL=ALL REINSTALLMODE=vomus

How can I pass the parameter the msiexec if the user calls the setup.exe?

Community
  • 1
  • 1
Thorsten
  • 1
  • 1
  • The linked questions only mentions Major upgrades, it doesn't mention minor upgrades or the properties mentioned in your question. – heavyd Feb 08 '11 at 05:31

1 Answers1

1

The bootstrapper should contain the logic that determines what installers are called when. So you'll need to call msiexec yourself from within the bootstrapper.

Elmar de Koning
  • 519
  • 3
  • 4