AUTO OPENING WEB SITE FOR SPECIFIC TIME & AUTO CLOSING WEB SITE
__AUTO SITE OPENING CODE FOR SPECIFIC TIME -SIMPLE _____________________________________________________
@echo off
:loop
echo Opening the website...
start "" "https://www.mobiledoctor.org.in/" "https://www.shop.mobiledoctor.org.in/"
timeout /t 30 /nobreak >nul
echo Closing the browser...
taskkill /im chrome.exe /f >nul 2>&1
taskkill /im msedge.exe /f >nul 2>&1
taskkill /im firefox.exe /f >nul 2>&1
timeout /t 1 /nobreak >nul
goto loop
__________________________________________________________________________________
Comments
Post a Comment