Geoff Finger-2 wrote:
> 
> The specific problem in this case is the x64 installer was working
> just fine but someone pointed out that one of the files was 32 bit and
> thus should be installed to "Program Files (x86)" instead of the
> normal Program Files folder.
> 
On 64-bit Windows, ProgramFiles64Folder will evaluate to "Program Files" &
ProgramFilesFolder to "Program Files (x86)".
AFAIK you need to duplicate your directory hierarchies: it won't happen
automatically:

<Directory Id="TARGETDIR" Name="SourceDir">
  <Directory Id="ProgramFilesFolder">
    <Directory Id="MyApp64Folder" Name="MyApp"> ... </Directory>
  </Directory>
  <Directory Id="ProgramFiles64Folder">
    <Directory Id="MyAppFolder" Name="MyApp"> ... </Directory>
  </Directory>
</Directory>

Geoff Finger-2 wrote:
> 
> I have " InstallerVersion="200" Compressed="yes" Platforms="x64"" in
> the Package element, and "Win64="yes"" for all the components (except
> the one that's _supposed_ to end up in the x86 folder of course.)
> 
This sounds right.

-Karim

-- 
View this message in context: 
http://www.nabble.com/x64-and-ProgramFilesFolder-vs.-ProgramFiles64Folder-tf4680463.html#a13383179
Sent from the wix-users mailing list archive at Nabble.com.


-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to