I am building an install file that needs at the end to install 2 other msi files at the end of the install. What is the best way to do this. I would prefer to make the additional installs optional but most of the users will require them on the computer for the application to be used properly.
Share
Generally this is referred to as a CustomAction in most installers. In my experience, additional MSI’s must be chained together at the end of the installation using CustomActions, as it is not allowed to run more than one MSI installer at a time.