I have the following 2 bat files:
1.bat
------
//a line which does something
pause
2.bat
------
//a line which does the other something
pause
Now, how do I run these bat files within a new bat file, by ignoring the pause(s)?
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.
Simple: Remove the
PAUSE!But I assume, one of your restrictions of the problem could be, that you can’t remove the
pause.Then you could use redirection to the called batch file.
Something like