philchillbill wrote: 
> Also untried here, but in other .bat files I've prepended the command
> with 'call' to prevent this. Might be worth trying.

'call' starts the program or batchfile in a new console session but not
in parallel.

staresy wrote: 
> Yes, that's what initially I thought, but after starting the ngrok
> tunnel the batch file stop running and never runs the subsequent code,
> hence the use of 2 files.

I don't know what might be special with ngrok, but I just tried using
start with an other command line program and it works as expected:
The autorunsc.exe executes in it's own console window and runs for
~20sec, while in the first console window I can immediately see the
countdown of the timeout command.

Code:
--------------------
    
  cd /d "C:\Progs\Sysinternals.com"
  start autorunsc -a *
  timeout 5
  echo hello
  pause
  
--------------------


------------------------------------------------------------------------
reinholdk's Profile: http://forums.slimdevices.com/member.php?userid=36070
View this thread: http://forums.slimdevices.com/showthread.php?t=111016

_______________________________________________
plugins mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to