How can I create a bootloader that installs a third-party exe followed by 2 msi applications

I was not able to create installation projects and hoped for some direction regarding the best, most flexible and easiest way to create a bootable installation device. I need special actions to check existing versions, the ability to install a third-party application, several internal msi applications, etc. Currently, I have considered the following options: installshield, VS setup project, msbuild, wix. But after a couple of days, the search is still looking for the recommended approach. Any advice appreciated

+3
source share
1 answer

Most of the tools you mentioned support what you want anyway. It really depends on what you want to use.

If you want a free solution, Wix is ​​the best. It’s not so easy to set up prerequisites with it, but you can do it: http://wix.sourceforge.net/manual-wix3/install_dotnet.htm

If you want a commercial solution, I recommend Advanced Installer or InstallShield. You need to purchase a license, but you can configure the installer with a few clicks.

So, first you have to decide which tool you want to use, and then see if you have any problems.

0
source