How to repeat a command in batch
Solved
jays33
-
dubcek Posted messages 18627 Registration date Status Contributor Last intervention -
dubcek Posted messages 18627 Registration date Status Contributor Last intervention -
Hello, I would like to repeat a command 100,000 times
a batch program (.bat)
I inserted a loop but it is infinite -_-"
Thank you for your help.
a batch program (.bat)
I inserted a loop but it is infinite -_-"
Thank you for your help.
Where do I place an order?
you can remove the pause it was just for you to see how it works
and put it here:
:Repeat
HERE
set /a a=%a+1
OR HERE
pause
if %a% == 100000 goto End
goto Repeat
++
I'm having a bit of trouble :)
although I didn’t understand the PM lol
send it in a private message or put it here like this, it could help others
++