Open all browsers

Associate
Joined
31 Jan 2007
Posts
1,860
Hello,

How can I create a shortcut to open multiple browsers at the same time?

I want to open:

Firefox,
Chrome,
Opera,
Safari
IE Tester
IE 9 Beta

Preferably open one and then a couple of seconds delay before the next one.?

Anyone able to help me out here?
 
a command script could do it.

Code:
@echo off
"c:\{location of the program}\firefox.exe"
"c:\{location of the program}\chrome.exe"
EXIT

shoud do what you want, the only way to get a pause between each program load is to get a program called WAIT, you would then add WAIT 10 for it to wait 10seconds between each program load.
 
For rough script delays I normally just ping an address that I know won't respond, as it doesn't need anything extra installed e.g.
ping -w 1000 192.168.253.253
Tweak the "-w 1000" value to adjust the delay.
 
Back
Top Bottom