I'm wondering how I can open a batch file with another batch file multiple times I'm currently using this code
set counter=0
:loop
call Pinger.bat
SET /A counter=%counter%+1
if %counter% GTR 100
    (GOTO exit) 
else 
    (GOTO loop)
:exit
exit
But it just closes the bat file with this code as soon as the first one of the other one is opened..
 
     
    