Creating an installation package for a Visual Studio 2008 C# application and another installation for Mschart ALL-IN-ONE... Is this possible?

StackOverflow https://stackoverflow.com/questions/21622737

Question

I have Inno Setup installed and also Advanced Installer 10.9 (Professional edition), and was wondering if I can create a multi-installation setup package that has both my application and Mschart? I have tried to simply create a single package that contains the _Mschart_file, but when another computer (user) doesn't have it installed already (Mschart), it won't allow you to view the graphs. I've read about Merging Modules in the Advanced Installer 10.9, this program is also really slick and PRETTY! So would prefer to use this.

So, when the user opens up setup, It will install the application first then Mschart (vice versa) sequentially.

Was it helpful?

Solution

In Visual Studio you can create a boostrap package with your prerequisites and add it to tour msi package. The installer will detect where your prerequisite is installed or no and take the appropriate decision.

See this article for more info:

http://msdn.microsoft.com/en-us/library/ms165429.aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top