I have made my perl scripts executable(perl2exe) but I can not run them on mahcines that do not have Perl installed. How can I get them to work w/o having to have perl installed on every machine I want to run my scripts on?
Aug 20, 2003, 3:50 PM
Veteran (17240 posts)
Aug 20, 2003, 3:50 PM
Post #2 of 8
Views: 8044
http://search.cpan.org/...S/PAR-0.73/script/pp
========================================
Buh Bye!
Cheers,
Me
========================================
Buh Bye!
Cheers,
Me
Aug 21, 2003, 8:05 AM
Novice (9 posts)
Aug 21, 2003, 8:05 AM
Post #3 of 8
Views: 8025
Thanks Stealth but I am not using a Unix environment. Let me give a little more info on what I am doing.
I am using Active State Perl on a Windows ME OS and I can run my scripts on my machhine w/o problem. I have to give these scripts to other people to use on their machine so I use perl2exe to convert the perl scripts to executable. In order fo rmy scripts to work on the other mahcines I have to get Perl installed. Is there a way I can deploy the exe to the other machines so that they work w/o having to install perl?
I am using Active State Perl on a Windows ME OS and I can run my scripts on my machhine w/o problem. I have to give these scripts to other people to use on their machine so I use perl2exe to convert the perl scripts to executable. In order fo rmy scripts to work on the other mahcines I have to get Perl installed. Is there a way I can deploy the exe to the other machines so that they work w/o having to install perl?
Aug 21, 2003, 8:08 AM
Veteran / Moderator (18436 posts)
Aug 21, 2003, 8:08 AM
Post #4 of 8
Views: 8010
I very much doubt it...because it is Perl that interprets the .exe, and produces the output.
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Aug 21, 2003, 8:48 AM
Veteran / Moderator (18436 posts)
Aug 21, 2003, 8:48 AM
Post #6 of 8
Views: 7989
Yeah, but only if you have Perl installed on the computer you are trying to run it on? It can't compile Perl into the .exe every time you create a Perl script?
Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!

Cheers
Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Aug 21, 2003, 10:50 AM
Novice (9 posts)
Aug 21, 2003, 10:50 AM
Post #7 of 8
Views: 8011
I have seen .exe work before with a .bat file on a Win ME machine that didn't have perl installed on the machine. You would place the script in a folder with its .bat file. Place the files you want processed in the same folder then run the exe. That is what I am looking for. I do not know how to do that but the idea is the same.