Hi, > Can't locate Win32/Registry.pm in @INC (@INC contains: > C:/strawberry/perl/lib C: > /strawberry/perl/site/lib C:\strawberry\perl\vendor\lib .) at GETIP.pl line > 1. > BEGIN failed--compilation aborted at GETIP.pl line 1.
It means that perl is unable to find the module Win32::Registry. So, you need to either install it or add it to @INC for perl to find it. >From checking CPAN, I read that Win32::Registry (http://search.cpan.org/perldoc?Win32::Registry) is now obsolete use Win32::TieRegistry (http://search.cpan.org/perldoc?Win32::TieRegistry) instead. Regards, Alan Haggai Alavi. -- The difference makes the difference -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] http://learn.perl.org/
