i have a question
I get this script
for /f "tokens=* " %%d in ('tracert -4 -d 8.8.8.8') do (
echo %%d
) >>test.txt
but I would like condition as below 1. save new file when i do run this script anytime example
run 1 > create new file1
run 2 > create new file2
run 3 > create new file3
ever
the script continues run 1 minute
if i need to file name is date time is there anyways
thank for answer