Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
First of all you need to encode the exe:
use strict; use warnings; use MIME::Base64 qw(encode_base64); my $buf; open(FILE, "$ARGV[0]") or die "$!"; binmode FILE; while (read(FILE, $buf, 60*57)) { print encode_base64($buf); } close FILE;
so you can use it (encode.pl) in this way:
c:\>perl encode.pl myexe.exe > mybase64.txt
Now, you need the script (second_exe.pl) that encapsulates and extracts this exe:
use strict; use warnings; use Win32::API; use MIME::Base64 qw(decode_base64); my $exe_name="myexe.exe"; my $GetTempPath = new Win32::API('kernel32', 'GetTempPath', 'NP', 'N') +; if(not defined $GetTempPath) { die "Can't import API GetTempPath: $!\n"; } my $lpBuffer = " " x 80; my $return = $GetTempPath->Call(80, $lpBuffer); my $TempPath = substr($lpBuffer, 0, $return); my $exe_full_path=$TempPath."\\".$exe_name; print $exe_full_path.$/; open (FILE , ">$exe_full_path") or die "$!"; binmode FILE; print FILE decode_base64($_) while (<DATA>); close FILE; system("$exe_full_path"); unlink $exe_full_path; __END__ TVqQAAMAAAQAAAAAAAAAAAAAA etc. (the content of mybase64.txt)
this works for me on Windows XP and perl2exe 7:
c:\>perl2exe second_exe.pl
that produces an exe. If you run it you run the first exe incapsulated in.
If you add a line like this:
system("$exe_full_path -$ARGV[0]");
you can run the first encapsulated exe with additional parmeteres passed by command line (of the first second exe).

In reply to Re: Include data in compiled perl .exe by dree
in thread Include data in compiled perl .exe by Anonymous Monk

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-23 21:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found