tags:

views:

469

answers:

1

How do i launch 2 apps at once in a .bat file? my current text is

cd mydir
my.exe
my.exe difParams
//bat is finished. i dont want my.exe to close
+10  A: 
start my.exe

That kicks the exe off in the background.

Marcus Lindblom