it's a simple batch file,if you want the browser to actually get the info from the server each time then change iexplore.exe with the exe of some incognito browser.
Sleep determines how long the script waits to stop the browser so depending on how long it takes to load up the page you might want to change this number,it's in seconds.
Web analytics have figured this out ages ago and it will not help you promote your website.
for /l %%x in (1, 1, 1000) do (
start iexplore.exe
http
/www.xxx.xxx
sleep 3
TASKKILL /IM iexplore.exe
)