-
QuestionIs it possible to build an MSI or a setup.exe that is x86, but chooses the correct x86/arch64 arch for installation? Since Windows has an emulator for x86 running on its arm64 devices, there's no reason an installer can't be x86 to install and then make its choice of which MSI to install based on WIX_NATIVE_MACHINE. Prior art: https://www.microsoft.com/en-us/edge/download
I'm struggling a bit understanding how to structure such a thing though. Open Source Maintenance Fee
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, Burn can do this today. This is a very normal use case, in fact. ✅ You do have to build separate MSIs. 😢 |
Beta Was this translation helpful? Give feedback.
Include both platforms of your MsiPackage elements and set the
InstallCondition
based on the ProcessorArchitecture variable (I think).