in reply to Starting up an external program with Win32::Process::Create fails for some, no others?
The first thing I would try is using the Windows-only asynchronous form of system:
system 1, $this->{mLink}->{'Path'};
If that works, I'd stop there(*).
If not, then $^E may shed some light on the reason.
(*)Given that system calls the same underlying API, CreateProcess(), with the additional benefit of having been got right over many versions of Perl, I see no benefit in calling that API directly unless I need access to features not exposed through system.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Starting up an external program with Win32::Process::Create fails for some, no others?
by 1bru1 (Initiate) on Dec 23, 2011 at 04:04 UTC | |
by BrowserUk (Patriarch) on Dec 23, 2011 at 04:14 UTC |