vote up 2 vote down star

I have 3 projects in my solution that I want to deploy. Is there a nice and quick way of using Visual Studio's setup projects to deploy all three apps using one MSI and letting the user decide which apps he wants to install during the install process?

I have setup projects for the 3 individual apps, I also have an overarching setup project that has the output of those other three projects. Am I on the right track or is there a better way?

flag

2 Answers

vote up 2 vote down check

OK, this is what I ended up doing. I build my three MSI and then a small splash screen app that gives a checkbox for each app. When the user clicks install on that splash screen it calls msiexec using the /qb- option to present a minimized install on all the selected applications in sequence.

I then use SFX Compiler to package my splash screen app and the three installers all together, and then the splash screen will show up after extraction.

link|flag
vote up 1 vote down

You can try Wix to create your installer. There's WixUI_FeatureTree and WixUI_Mondo which are GUI options that are designed to allow users to customize the features that are installed when the package runs.

http://www.codeproject.com/KB/install/WixTutorial2.aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.