http://www.perlmonks.org?node_id=1036831


in reply to Re^2: Making a standalone executable
in thread Making a standalone executable

It sounds like you used a 64 bit version of Perl to create your executable. In that case, you built a 64 bit executable, which can only be used in 64 bit Windows. Unless you need the 64 bit features of 64 bit Perl, you can install and use 32 bit Perl in 64 bit Windows. If you use 32 bit Perl to create your executable via pp, your executable can be run from both 32 bit and 64 bit Windows.

Replies are listed 'Best First'.
Re^4: Making a standalone executable
by Uggles (Novice) on Jun 03, 2013 at 19:44 UTC
    Awesome, thank you.