Help for this page

Select Code to Download


  1. or download this
    HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun
    HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $rc = $? >> 8;
    print "rc=$rc, stdout/stderr of command follows:\n";
    print $out;
    
  3. or download this
    use strict;
    use warnings;
    ...
    close(SAVOUT) or die "error: close SAVOUT: $!";
    print "rc=$rc\n";
    print STDERR "rc=$rc to STDERR\n";