Opening individual windows with Start

I am trying to open multiple instances of IE using 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

+1


source to share


1 answer


$>start iexplore http://google.com
$>start iexplore http://yahoo.com

      



+2


source







All Articles