Hi David,
I tried that and still no luck. This is my batch file. Does it not need some sort of pause to process it?
Code:
@echo off
set /a var=%1
:LOOP
if %var% gtr %100 goto :END
tracert xxxxxxx.xxx >> d:/traceresults.txt
set /a var+=1
goto LOOP
:END