in reply to use Net::SSH::Perl;

See un-inplemented function in Net::SSH::Perl for Activestate Perl?, which discusses the same problem and also has a solution.

Please also see How (Not) To Ask A Question on how you can supply better and more information to get better replies.

Replies are listed 'Best First'.
Re^2: use Net::SSH::Perl;
by jdelmedico (Initiate) on Apr 21, 2006 at 12:53 UTC
    Joey Thanks for the suggestions Corion. Unfortunately, the link did not have a solution...Looks like the module has problems with windows. Joey

      What part of BrowserUK's reply did not help you? It solves the problem you stated. If you now have a different problem, why don't you show us the relevant code, data, output and your expected output? I linked to How (Not) To Ask A Question, because it is a very useful guideline in what is needed in a question to receive helpful answers.

        My code is almost identical to BrowserUK... When I step through the program the error appears when the perl.pm hits this line my $home = $ENV{HOME} || (getpwuid($>))7; Obviousley I don't understand how to update the code to solve this. I tried to modify HOME with HOMPATH I don't know where to apply BrowserUKs suggestion $ENV{USERNAME} for the first use (in _current_user()); $ENV{HOMEDRIVE} . $ENV{HOMEPATH} for the second (in _init() ); Thank you so much for your time..