1.

Solve : How to spawn a program from batch file??

Answer»

I want to call executable program from batch file, but RETURN IMMEDIATELY from program just started and not wait for the executable to end.

For example of two lines in a batch file:
program1.exe
program2.exe

Normally in the above example program1.exe would have to run and then EXIT before the program2.ex could run.

In C language this would be spawning a program.

So how do I "spawn" a program from a batch file?

Check the START commandSTART SEEMS to work.

Thanks,
Tom
Memphis



Discussion

No Comment Found