The problem:
Currently I have a data component that installes to ProgramFilesFolder, but
on a x64 machine it will install my executable to ProgramFiles64Folder and
the data needs to be in relation to it.  On X64 the x86 program files will
not install.  Is there a way to accomplish this task.

<Directory Id ="ProgramFiles64Folder" ...>
    <Component = "Main64Component" GUID = "PUT-GUID-HERE">...</Component>
</Directory>
<Directory Id = "ProgramFilesFolder" ...>
    <Component ="MainComponent" GUID = "PUT-GUID-HERE"> ...</Component>
    <Directory Id = "DataFolder" ... >
        <Component = "DataComponent"  GUID = "PUT-GUID-HERE" ...
</Component>
    </Directory>
</Directory>
What I want is on X64 the DataFolder points to 
\\Program Files\\DataFolder\\
instead of 
\\Program Files (x86)\\DataFolder\\
Is there a conditional way to do this or do I need a custom action that sets
the Data Folder Directory according if the system is x64
-- 
View this message in context: 
http://www.nabble.com/x64-and-x86-both-use-same-data-files-tf3880360.html#a10997038
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to