I have been using ActivePerl and Perl2exe for over a year with no problems. I haven't tried ALL the modules but all the one's I've needed worked. If you read the Perl2Exe documentation (which I admit is a little cryptic at times), There are a lot of potential issues to watch out for:

That's not everything, but it's what caused the most problems for me.

Instead of remembering how exactly I got a program to go .exe every six months when I update it. I write a batch file:

perl2exe -tiny -gui ts.plx
That's a pretty basic one -- they can get pretty complex. The -gui is for Tk apps (gets rid of ugly dos window, but you lose visibility of STDOUT) and the -tiny (registered version only) splits the program into multiple DLL's to help start up time.

Here's a header for one of my larger programs (1000+ lines) that converts pretty easily.

use SDBM_file; use Fcntl; use FILE::DosGlob; # perl2exe use File::DosGlob 'glob'; # override CORE::glob use Tk 8.0; use Tk::Menu; use Tk::Menu::Item; require Tk::Dialog; use Win32::API; use Win32::SerialPort;
Hope this helps.

In reply to Re: Perl2exe aggrivations by ase
in thread Perl2exe aggrivations by Cybercosis

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.