How can I write a batch file that will call an executable then call another executable without the need for the first process to finish? This is kind of like the & operator in *nix.Thx,Desh
2/22/2007 4:00:24 PM
use the "start" commandlike so:
start app1.exestart app2.exe
2/22/2007 4:05:50 PM
thx dude! that worked!
2/22/2007 5:30:10 PM