-1

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.

mystack
  • 4,910
  • 10
  • 44
  • 75

1 Answers1

0

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

Christopher Painter
  • 54,556
  • 6
  • 63
  • 100
  • I was able to build a bootstrapper.exe, but the problem is it is performing the full installtion by running the MSI in background. I want it to just invoke the MSI based on Platform and rest need to be performed by MSI itself. – mystack Jun 03 '20 at 16:43