MSI merge module from the full MSI package

Can I reliably create a merge module from a regular MSI package such as MySQL to combine with my own installation? WiX has the right tools for this, but what pitfalls should I expect from such a transfer? What are the alternatives for installing other MSI packages from my own package?

+3
source share
3 answers

You can create an application to download. The application will install your installation package, and then the third-party application (s).

If you have InstallShield, a popular way to do this is to create an InstallScript-based boot script that invokes MSI files.

+4

: "". MSI. MSI ( , , :).

, bootstrapper/chainer, - .

+4

One of the problems associated with trying to take MSI and create MSM is that MSM does not have error tables, so any error lines that you expect to be referenced from your custom MSI actions will not exist.

0
source

Source: https://habr.com/ru/post/1752541/


All Articles