http://www.perlmonks.org?node_id=496781


in reply to ppm rep describe

I also find the same problem on XP. What you might try instead is accessing the information directly from PPM::UI:
use strict; use warnings; use PPM::UI; my $name = q{ActiveState PPM2 Repository}; my $results = PPM::UI::repository_info($name); my $result = $results->{result}; print <<"END"; Name: $result->[0] Location: $result->[1] Type: $result->[2] END