How to Hit some site Automatically
@echo off
cls
:start
TIMEOUT 10
start "c:\program files\internet explorer\iexplore" "http://developers1zone.blogspot.com"
echo 'Open Link #######'
TIMEOUT 20
taskkill /FI "WINDOWTITLE eq developer*"
goto start
save this file as .bat extension and click it it will send get request to this site and it will open the site automatically
cls
:start
TIMEOUT 10
start "c:\program files\internet explorer\iexplore" "http://developers1zone.blogspot.com"
echo 'Open Link #######'
TIMEOUT 20
taskkill /FI "WINDOWTITLE eq developer*"
goto start
save this file as .bat extension and click it it will send get request to this site and it will open the site automatically
Comments
Post a Comment