http://www.perlmonks.org?node_id=1073172


in reply to Controlling the execution.

In the bellow code the execution stops after executing the code system('"%windir%\system32\mstsc.exe"');(opening Remote Desktop Connection), And restarts when I close the window poped by the exicution of it.

I guess that perl waits for the system call to return. Try

system('"start %windir%\system32\mstsc.exe"');

This might help solving (part of) issue 1.

perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'

Replies are listed 'Best First'.
Re^2: Controlling the execution.
by Corion (Patriarch) on Feb 03, 2014 at 11:11 UTC

    Alternatively, on Windows, you can launch a task without waiting by using

    system( 1, $cmd )

      Thanks a lot monk...

Re^2: Controlling the execution.
by pradeep,krishna (Scribe) on Feb 04, 2014 at 04:18 UTC

    Thanks a lot monk...