I created a bat file with the following code
"C:\Program Files\Internet Explorer\iexplore.exe" http://localhost:8083/
The bat file should run the link http://localhost:8083/
then I created a time scheduler on the server that run this bat file every 5 min so in theory the link should be called every 5 min
my problem is that the bat file is only being called once and I can't see that every 5 min a new instance of IE is called to run the webpage thus the code inside the weblink is not being executed every 5 min
what do you think i should do to fix this?