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
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That kicks the exe off in the background (and avoids title issues, see below).
The start command offers some options too, use
start /?to list them:A tricky bit can be that the “title” comes before the executable and it’s parameters, so sometimes you need to give the app a title just to get start to parse the arguments correctly. 😐