In windows batch file, if myScript.bat runs otherScript.bat, and in otherScript.bat, there\'s a pause in first line. How can I send a keystroke to skip that pause in myScrip
You could modify otherScript.bat so that it accepts an optional parameter, telling it to skip the pause command like this:
if "%1"=="nopause" goto start pause :start