I have a problem with my loop, i don't know how to use the %%A to edit my variable.
For example, i want to set IPAdresse like that:
- 10.98.1.10
- 10.98.2.10
- 10.98.3.10 ...
Here the code :
FOR /L %%A IN (1,1,200) DO (
set "IPAdresse=10.98.%%A.10"
---> do something
)
Thanks in advance.