I am trying to loop through a list of URL's and keep running into trouble. Specifically, I keet running into trouble with parameters, because of the equals sign.
set loadval[1]="/orders/counts"
set loadval[2]="/orders/counts?aggregationKind=Day&fullHistory=true"
set loadval[3]="/products/popularity?aggregationKind=Month&aggregationCount=12"
set loadval[4]="/products/popularity/aggregated?aggregationKind=Month&aggregationCount=12"
for /F "tokens=4 delims==" %%s in ('set loadval[') do (
echo Connecting to %%s
)
Ideas?