Help for this page

Select Code to Download


  1. or download this
    $user="DOM\username"  # bound to fail
    
    $user="DOM\\username" # OK
    $user='DOM\username'  # OK as well
    
  2. or download this
    use Win32::KillProcess ':all';
    my $server = "Toshiba";
    ...
    my $pass   = "password";
    my $c      = connectServer( $server, $user, $pass );
    showRunningProcess($c);