I'm trying to create a simple script that will store all my daily Record Name - DNS History. Initially i came up with this script here.
@echo off
ipconfig /displaydns > temp.txt
find "Record Name" temp.txt > WebsitesVisited.txt
del temp.txt
The problem is that every time i run the bat file, it overrides the previous record name history, so what i want is to create a loop that will generate a different txt file each time i run this script (etc WebsitesVisited1.txt, WebsitesVisited2.txt... WebsitesVisited999.txt).
Any suggestions?