How to quickly open a webpage in all browsers
October 8, 2010 at 5:19 pm | Scripts, Windows | No comment
While developing a website you should routinely check to make sure your pages are working properly in many major browsers. This is a DOS Batch script that will let you open a specific page in all your browsers with a single command.
Source
@ECHO OFF IF "%1"=="" GOTO Continue start iexplore %1 start firefox %1 start chrome %1 start safari %1 :Continue
Installation
Open a text editor and save the above code to a file in your Windows directory.
C:\WINDOWS\browsertest.bat
Usage
Run the script with the URL you want to test as the 1st parameter.
Click on Start -> Run and enter the following command:
browsertest http://www.danbeland.com

