Feasibility of cross-platform MSI #7580
Unanswered
kamilcieciura-okta
asked this question in
Questions
Replies: 1 comment
-
A shared CAB file is possible, but it's been years since I've done it, so all I have time to do for now is to encourage you. We used to call the relevant feature "cab reuse". |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I need an installer that can work for both 32-bit and 64-bit OS. Currently I build 2 separate MSIs and bundle them together in a bootstrapper EXE. The problem is that 90% of the files are common between the two platforms and my installer is almost double of what it can be. I tried making a 32-bit MSI that would install common files, but it can't access the 64-bit OS folders like Program Files or System32. I tried using a merge module for common files, but the 2 separate MSIs that reference the merge module end up being the same size as without using the merge module. Would making the 2 MSIs share an external cab file work? Is there a standard way to solve this problem?
I’m using WiX Toolset 3.11.
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions