in reply to Win32::Process handling
Win32::Process::Create( my $process, 'C:/path/to/executable.exe', "commandgoeshere", 0, NORMAL_PRIORITY_CLASS, '.', ) or die "Could not start process\n"; # Wait for the process to complete before continuing in the applicatio +n $process->Wait(INFINITE); # You can also set a particular time
|
|---|