Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

calling another MSI setup within a MSI


3 replies to this topic

angp

angp
  • Full Members
  • 49 posts

Posted 11 October 2005 - 03:46

Hi,

Is there a way to call another MSI setup within the MSI.

I want to have a MSI setup that will call multiple MSI based on user's input.
Is it possible?

Please advice.
Thank you.

thanks,
angp

Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 11 October 2005 - 09:34

In theory it's possible, but not recommended. You could call msiexec as a ustom action in the UI sequence. You should not use nested install custom actions.

Glytzhkof

Glytzhkof
  • Moderators
  • 1,447 posts

Posted 11 October 2005 - 12:11

It is generally much better to write your own setup.exe bootstrapper that can then do the installation of the different MSI files in sequence.

Nested install custom actions is perhaps the worst designed part of MSI. It causes a massive coctail of problems such as patching problems, upgrade problems, problems running admin installs etc...
Regards
-Stein Åsmul

angp

angp
  • Full Members
  • 49 posts

Posted 11 October 2005 - 17:22

Thank you all for the reply.