Wednesday, June 27, 2018

HOW TO OPEN MULTIPLE WEB LINKS IN SINGLE CLICK WITH TIME DELAY

HOW TO OPEN MULTIPLE WEB LINKS IN SINGLE CLICK WITH TIME DELAY

Do you want to open all your default daily websites like Facebook, Gmail and Google in single click with time delay here you can Go

 1# Open notepad

2# Write Script like below .Note :please replace websites with your website .

@echo off
start "" chrome "https://www.google.co.in/" 
Timeout /t 10 /nobreak >nul 2>&1
start "" chrome "https://www.facebook.com/" 
Timeout /t 10 /nobreak >nul 2>&1
start "" chrome "https://www.msn.com/de-de/"
Timeout /t 10 /nobreak >nul 2>&1
start "" chrome "https://superinfolive.blogspot.com/"

3# Select File->SaveAs->Save with .bat file format .
HOW TO OPEN MULTIPLE WEB LINKS IN SINGLE CLICK WITH TIME DELAY





4# Double Click  batch file when ever you want to open multiple weblinks.

Batch File
Do you want to open multiple websites without time delay ,then please check below link