merrymonk has asked for the wisdom of the Perl Monks concerning the following question:

I use the Perl below to start an application, with command line arguments, which runs on the PC being used.
Can this Perl be altered so that the application can be run on another PC that is on the same network?
If so, what changes have to be made?
$ppc = Win32::Process::Create( $process, ......\perl5\bin\perl.exe, ......\appdir\app_name.pl arg1 arg2, 0, NORMAL_PRIORITY_CLASS, '.' ); $process->Wait(INFINITE);

Replies are listed 'Best First'.
Re: Starting an Application on another PC
by Corion (Patriarch) on Sep 05, 2016 at 10:48 UTC