Hi. I'm new to WiX and I have some question.

I have a client-server app, and my install sequence is 
<welcome>-<license>-<setup type>-...
<setup type> allow users to choose "Server Install", "Client Install" or 
"Custom Install"

<Feature Id='Server' Level='1' ...>
 <Feature Id='Server1' Level='1' ...>
  <ComponentRef Id='ServerPart' />
 </Feature>
 <Condition Level='100'><![CDATA[InstallMode = 
"ClientInstall"]]></Condition>
</Feature>
<Feature Id='Client' Level='1' ...>
 <Feature Id='Client1' Level='1' ...>
  <ComponentRef Id='ClientPart' />
</Feature>
 <Feature Id='ClientHelp' Level='1' ...>
  <ComponentRef Id='Manual' />
 </Feature>
 <Condition Level='100'><![CDATA[InstallMode = 
"ServerInstall"]]></Condition>
</Feature>

On <setup type> I've placed buttons which set InstallMode property.
This way is not right, because all conditions runs in LaunchConditions 
part of installation sequence.

How I can change <Feature> Level on the fly? Maybe some custom actions?
Or some hints (right way) for client - server install.

Thanks for assistance,
Anton



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to