Difference between revisions of "Activeperl"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
(Activeperl moved to Silent Installers:Activeperl)
 
m (moved to the correct category)
Line 1: Line 1:
#redirect [[Silent Installers:Activeperl]]
+
  start /w msiexec /i "ActivePerl-5.8.7.813-MSWin32-x86-148120.msi" PERL_PATH="Yes" /qb-
 +
 
 +
PERL_PATH adds c:\perl\bin to the windows PATH Environment Variable.
 +
 
 +
To install modeules from a local repository (as opposed to the Activestate repository)
 +
 
 +
  SET LOCALPACKAGEREP=\\server\share
 +
  ppm rep add "Local" %LOCALPACKAGEREP%
 +
  ppm install %LOCALPACKAGEREP%\net-ip\Win32-FileOp.ppd
 +
 
 +
Each ppd file contains a reference to a tar.gz file that is usally kept in the same folder.
 +
Just make sure that you have all the dependancies for the modules (again, in the ppd file)
 +
 
 +
[[category:Silent Installers]]

Revision as of 20:26, 13 March 2006

 start /w msiexec /i "ActivePerl-5.8.7.813-MSWin32-x86-148120.msi" PERL_PATH="Yes" /qb-

PERL_PATH adds c:\perl\bin to the windows PATH Environment Variable.

To install modeules from a local repository (as opposed to the Activestate repository)

 SET LOCALPACKAGEREP=\\server\share
 ppm rep add "Local" %LOCALPACKAGEREP%
 ppm install %LOCALPACKAGEREP%\net-ip\Win32-FileOp.ppd

Each ppd file contains a reference to a tar.gz file that is usally kept in the same folder. Just make sure that you have all the dependancies for the modules (again, in the ppd file)