cmd - batch file: continue on error with the next command -


i launch 2 programs using start command within batch file below:

start program1 timeout /t 10 start program2 

my problem: if program1 fails because not found, want continue executing content of batch file, mean, wait 10 seconds , execute program2. problem if program1 fails, message displayed asking user (interactive) , not continue until user selects do. want non-interactive automatically continue executing rest.

how can it?

thx


Comments

Popular posts from this blog

searchKeyword not working in AngularJS filter -

sequelize.js - Sequelize: sort by enum cases -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -