Re: [WiX-users] How to conditionally launch per prerequisites

2009-05-08 Thread David Bartmess
allst.com] Sent: Monday, May 04, 2009 9:05 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] How to conditionally launch per prerequisites That answers my question... Thanks. I can setup a custom action to check the allowed features that runs bef

Re: [WiX-users] How to conditionally launch per prerequisites

2009-05-08 Thread David Bartmess
ay 04, 2009 9:05 AM To: 'General discussion for Windows Installer XML toolset.' Subject: Re: [WiX-users] How to conditionally launch per prerequisites That answers my question... Thanks. I can setup a custom action to check the allowed features that runs before the feature screen, I presu

Re: [WiX-users] How to conditionally launch per prerequisites

2009-05-04 Thread Bob Arnson
David Bartmess wrote: > That answers my question... Thanks. I can setup a custom action to check the > allowed features that runs before the feature screen, I presume, and disable > the features not allowed. > You get the same effect using feature conditions. -- sig://boB http://joyofsetu

Re: [WiX-users] How to conditionally launch per prerequisites

2009-05-04 Thread David Bartmess
To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] How to conditionally launch per prerequisites David Bartmess wrote: > Is it possible to set launch conditions per the features actually > being installed No. The general approach is to disable features (usi

Re: [WiX-users] How to conditionally launch per prerequisites

2009-05-02 Thread Bob Arnson
David Bartmess wrote: > Is it possible to set launch conditions per the features actually being > installed No. The general approach is to disable features (using the Condition element) if their prereqs aren't installed. -- sig://boB http://joyofsetup.com/ -

[WiX-users] How to conditionally launch per prerequisites

2009-05-01 Thread David Bartmess
I have two features in my application installer, one that requires .NET Framework 1.1, and one that requires version 2.0. Is it possible to set launch conditions per the features actually being installed (as below)? Or are these conditions checked prior to the feature selection? If so, how can