in reply to Find Perl Modules Installed.

One way is to use ExtUtils::Installed
use ExtUtils::Installed; my $inst = ExtUtils::Installed->new(); print join "\n", $inst->modules();
for more informations: ExtUtils::Installed

There is also a free CGI script from Scriptsolutions that shows you all the installed modules and other useful informations.

The script (perldiver) is located here