Reputation: 469
I have a set up project which installs my program just fine. However, my project also requires crystal reports. So what I am trying to do is somehow get my installation to call the MSI that will install the runtime while running my setting . I have tried adding crystal reports as a prep requite in the build but that is causing the entire file to be downloaded...i actually do not want that and just want to jump from my install to the install of the other MSI. Any help setting this up or pointing to a resource that helps would be appreciated...thanks
Upvotes: 0
Views: 600
Reputation: 84
What you want to do is called "nested installation". The following link describes how this is done: http://support.microsoft.com/kb/306439
Please be aware of the disadvantages of creating a nested installation:
I would create a Legacy Bootstrapper which installs the two MSI files.
Upvotes: 1