Solved! how to automatically get a website address opens and closes a thousands times a day

Feb 4, 2019
1
0
10
I would want a specific website to open and closes repeatedly in my browser so many times in a day
 

zoli.vida21

Prominent
Aug 23, 2017
6
0
520
or you can download AutoHotkey and set up a commands to repeat CTRL+F5 (refresh website without using browser cache) command a number of timer or until a specified key is held down. However while it runs you can't use your PC.

If you want to up your game then you should open that website multiple times and add to the previous command a CTRL+TAB (to switch to the next Tab) and then CTRL+F5 command.
 

TerryLaze

Commendable
May 9, 2016
116
0
1,710
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
)