mystack
mystack

Reputation: 5532

WIX - Build a setup.exe bundle which hold both 32 bit and 64 bit MSI

I was able to create a 32 bit and 64 bit msi of an application. Now i need to include these MSIs to a bundle like setup.exe. What is the best way to create a bundle like setup.exe that will extract the 32 bit msi in 32 bit machine and extract 64 bit msi in 64 bit machine.

Upvotes: -1

Views: 151

Answers (1)

Christopher Painter
Christopher Painter

Reputation: 55601

Just put 2 MsiPackage elements in your bundle with mutually exclusive conditions. VersionNT64 and Not VersionNT64.

Upvotes: 0

Related Questions