Link to home
Start Free TrialLog in
Avatar of bonna
bonna

asked on

Windows Command

Is there any command on windows to find out what perl modules are installed on a machine?
Thanks.
ASKER CERTIFIED SOLUTION
Avatar of mrjoltcola
mrjoltcola
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jhurst
jhurst

perl does not "register" what is installed so there could be no reliable way to do this,

when I am concerned that a machine does not have a module that I need I check for that module
If you installed them by usual means (ppm, CPAN, etc.) then they are indeed registered, and it is reliable.

As I said, PPM does keep an installed registry, and most people using Windows have ActivePerl and PPM

ppm query *

Or without that, these list, respectively, the modules that came with the Perl distro, and the modules you have added via CPAN or other standard means.

perldoc perlmodlib
perldoc perllocal


Avatar of bonna

ASKER

Thanks so much.