C# program stops execution of BAT file...

  • Thread starter Thread starter TomTom
  • Start date Start date
T

TomTom

I have the following code in a batch file. I want the timerstart.exe to
start in the beginning of the batch file, but it must not stop the "lots of
process" below. Currently, the lots of process begins after the
timerstart.exe ends, which is not desirable. Can anyone give me a suggestion
how to resolve this? I tried CALL but it didn't make any difference.

@echo off

timerstart.exe

echo lots of process here
echo ended

Thanks!
 
Hi Tom,

You can try the start command -

@echo off
start timerstart.exe


Regards,
Aravind C
 
Back
Top