http://qs321.pair.com?node_id=508337


in reply to How do I run a background command via Net::SSH::W32Perl

There are 2 ways I know of:
#backticks using start<br> my $rv = `start exceed.exe`; #system using the 1 option system( 1, "exceed.exe" );
JamesNC