tags:

views:

64

answers:

1

Hello,

I am tring to open several instance of IE with the start command in a batch file. For example I want to open www.google.com and www.yahoo.com at the same time in separate windows.

Any help would be appreciated.

Regards, Aaron

+2  A: 
$>start iexplore http://google.com
$>start iexplore http://yahoo.com
Gishu