Hi,
i'm looking for a solution to run a For Loop a certain amount of times, which i set before in a variable.
i did something like this:
set /p count=Count:
for %%i IN (0,1,%%count%%) do
Open in new window
But no matter what i set the variable to, the code runs exact 3 times.
Where is my mistake ?