You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
620 B
Perl

#!/usr/bin/perl -w
use Win32;
use Win32::Process;
$ApplicationName = 'c:\\winnt\\system32\\notepad.exe';
$CommandLine = 'notepad';
$CreateOptions = NORMAL_PRIORITY_CLASS | DETACHED_PROCESS;
Win32::Process::Create($ProcessObj,$ApplicationName,$CommandLine,
0, # Don't inherit.
$CreateOptions,
".") # current dir.
or die print_error();
$ProcessObj->Wait(INFINITE) or warn print_error();
$ProcessObj->GetExitCode($ExitCode) or warn print_error();
print "[$CommandLine] exited with $ExitCode\n";
sub print_error {
print Win32::FormatMessage( Win32::GetLastError() );
}