Well no not really. I just need to install a component differently on 64 than
on 32. Specifically I want the component to be permanent on 32, but not on
64. 

I think I can get around this by having two versions of the same component,
and then for the 64 bit one, rename (CopyFile) it to the original name
during the install. Something like so:

<Component Id="blah" Permanent="yes">
   <Condition>NOT VersionNT64</Condition>
   <File LongName="a.exe" Source="a.exe"/>
</Component>

<Component Id="blah2" Permanent="no">
   <Condition>VersionNT64</Condition>
   <File LongName="a.xxx" Source="a.exe"/>
   <CopyFile DestName="a.exe"/>
</Component>

--
View this message in context: 
http://www.nabble.com/Setting-attribute-based-on-Condition-t1820388.html#a4995751
Sent from the wix-users forum at Nabble.com.


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