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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top