64bit - Issues when installing .exe file generated using Inno on windows xp 64 bit machine -


i have generated installer(.exe) 64 bit machine using inno 5.5.3. when try run .exe file on windows xp 64 bit machine following error message

"this program not support version of windows computer running."

however when run same .exe on windows 7 64 bit machine executes fine , installs application. saw similar post here unanswered , couldn't reply question(< 50 reputation). kindly guide me going wrong. , let me know if need more clarification. in advance.

an installation can run in 1 of 2 modes: 32-bit or 64-bit.

64-bit mode selected if user running 64-bit version of windows , system's processor architecture included in value of architecturesinstallin64bitmode [setup] section directive. otherwise, 32-bit mode used.

there [setup] directive architecturesallowed

valid values: 1 or more of following, separated spaces: x86 x64 ia64

it specifies processor architecture(s) setup allowed run on. if directive not specified or blank, setup allowed run on processor architectures capable of executing 32-bit code (including ones doesn't recognize). otherwise, if user's processor architecture not 1 of specified in directive, setup display error message , exit.

everything based on script (there may other directives), please share script (at least [setup] section) can check it's validity.


Popular posts from this blog

How to calculate SNR of signals in MATLAB? -

c# - Attempting to upload to FTP: System.Net.WebException: System error -

ios - UISlider customization: how to properly add shadow to custom knob image -