Re: [WiX-users] How to execute custom action only if certain feature is selected

2008-12-16 Thread chandrashekar
Hi John, How can i check certian feature is selected or not at unistall time. while installing &FeatureName=3 it works but not while uninstall. Please can u help me. jmcfadyen wrote: > > using &FeatureName can determine the features installstate > > this link offers more detail > > http://

Re: [WiX-users] How to execute custom action only if certain feature is selected

2008-12-04 Thread John McFadyen
using &FeatureName can determine the features installstate this link offers more detail http://community.acresso.com/archive/index.php?t-149887.html http://msdn.microsoft.com/en-us/library/aa368561(VS.85).aspx John On Fri, Dec 5, 2008 at 12:38 PM, Joe Osman <[EMAIL PROTECTED]> wrote: > I want t

Re: [WiX-users] How to execute custom action only if certain feature is selected

2008-12-04 Thread Rob Mensching
MSI SDK has a section on Conditional Statement Syntax that explains this. -Original Message- From: Joe Osman [mailto:[EMAIL PROTECTED] Sent: Thursday, December 04, 2008 18:38 To: General discussion for Windows Installer XML toolset. Subject: [WiX-users] How to execute custom action only

[WiX-users] How to execute custom action only if certain feature is selected

2008-12-04 Thread Joe Osman
I want to execute a certain custom action only if a certain feature is selected. For example I have the following feature: What should I code in the InstallExecuteSequence so that a certain custom action will execute only if SQLFeature was selected? NO