In the past, I am using Wise Installation System to create 32bit app installer(in .exe format). Everything works well, if the installer is running under 32bit System, then it will use "C:\Program Files" as the default installation dir, and for 64bit System, it will use "C:\Program Files(x86)" as the default.
However, now I am try to create a new installer for my 64bit app(in .exe format). The installer itself is still 32bit, but the exe and dll files it installs are all 64bit. How to modify the installer so that it will use "C:\Program Files" instead of "C:\Program Files(x86)" as the default under 64bit system?
I have noticed the article at http://www.symantec.com/connect/blogs/building-64-bit-windows-installer-packages-using-wise-package-studio , but it seems it is only for .msi installer, not .exe installer.