Reputation: 5532
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
Reputation: 55601
Just put 2 MsiPackage elements in your bundle with mutually exclusive conditions. VersionNT64 and Not VersionNT64.
Upvotes: 0