Klaus
Klaus

Reputation: 203

MSI installer calling another MSI installer in silent mode using WiX

I'm using WiX to make an MSI installer to call another MSI installer.

Upvotes: 11

Views: 13652

Answers (2)

Wim Coenen
Wim Coenen

Reputation: 66753

Install both MSIs with the Burn bootstrapper included with wix 3.6.

Upvotes: 6

Phil Hannent
Phil Hannent

Reputation: 12317

Strictly speaking MSI files are transactional installers so they can only occur one at a time.

Microsoft get around this with merge modules which are like MSI but are used for embedding in MSI files.

Any chance the MSI you want to embed could be changed to be an MSM file?

Upvotes: 1

Related Questions