Situation is, i have 3 separate batch files in different locations running start
commands
on .jar .exe and call command to open index.html through Firefox.
I want to create one global batch-file to run all of these one at a time. Extra hint would be to make a pause (several seconds) in between calling each one of those commands.
These are the commands i am executing in batch files:
echo majmun1
call C:\OKOLINA\additionConsoleApplication1.exe
echo majmun2
call C:\OKOLINA\addition1\jWebSocketSamples-2.0.jar
echo majmun3
call firefox.exe C:\OKOLINA\addition2\index.html
echo majmun4
exit
It only executes call
the first one and stops.