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

windows installer msi


1 reply to this topic

darkd

darkd
  • Members
  • 2 posts

Posted 15 February 2002 - 15:48

When you create a new msi package using the .net setup and deployment project, you can create multiple launch conditions that will halt the installation of your app if certain requirements are not met.

Is there a way to have the setup package display all of the required launch conditions at the same time, instead of each one individually.

example: If I create 2 launch conditions, one for IE 6.0 and one for IIS 5.0, and the machine is missing both.  When I run the install program the first time, it will only display that I am missing IE.  Then when I install IE, and then run the setup again, it will show me that I am missing IIS.

I would like both requirements to show at the same time.

Any Ideas?


aseyer

aseyer
  • Members
  • 21 posts

Posted 15 February 2002 - 18:19

One possible solution would be to create a property called VALIDATE.  Have your launch condition based off of the condition of validate.  Upon launch, execuate an application that validates all of your requirements.  If all requirements are met, VALIDATE property can be set to true by application.  Otherwise, have your message for validate list all system requirements to install.