Batch File to Open Multiple URLs
top of page

Batch File to Open Multiple URLs


A simple batch file can open up multiple web pages automatically in your default browser whether you're using IE, Chrome or Firefox. Here's an example

@echo off

start "EDRM" "www.edrm.net"

start "EDI" "www.ediscoveryinstitute.org"

start "Georgetown Academy" "https://www.law.georgetown.edu/continuing-legal-education/programs/cle/ediscovery-training-academy/"

You simply prepare a script like this one [the names given before the web page addresses can be anything you choose] , and put it in a text file and change the extension to .bat . Then double-click and each referenced web address will open automatically.


bottom of page