in reply to SSH to a pix

Contrary what I wrote above about Net::SSH::W32Perl only speaking SSH 2 the new constructor will accept protocol => 1 as an option and override the SSH 2 default. That may do the trick

my $ssh = Net::SSH::W32Perl->new( $host, protocol => 1 );

cheers

tachyon