- or download this
HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun
HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun
- or download this
use strict;
use warnings;
...
my $rc = $? >> 8;
print "rc=$rc, stdout/stderr of command follows:\n";
print $out;
- 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";