in reply to Re^2: Installation of perl
in thread Installation of perl

Using msiexec, I believe you can invoke the installer with no gui interface. You than could run the two commands for tcl and Perl with a batch file, which would be a single click. Last time I used windows I used to install using msiexec with a /qn flag for no gui. You could give this a try for ActivePerl:

msiexec /qn /i ActivePerl.msi PERL_PATH=Yes PERL_EXT=Yes

Than you should be able to simply just copy/unzip the perl code to its necessary directory(ies).

Replies are listed 'Best First'.
Re^4: Installation of perl
by prashanth_hsn (Initiate) on Aug 11, 2008 at 15:51 UTC
    Thank you ... This was exactly what i was looking for..