View Single Post
Join Date: Aug 2005
Posts: 36
Reputation: mittelgeek is an unknown quantity at this point 
Solved Threads: 0
mittelgeek's Avatar
mittelgeek mittelgeek is offline Offline
Light Poster

Re: help with .bat file opening multiple programs

 
0
  #5
Sep 3rd, 2008
In order to get what you want to happen try this [all one line]:
start firefox www.google.com & start "C:\Program Files\MultipleIEs\IE6\IEXPLORE.exe" www.google.com & start "C:\Program Files\MultipleIEs\IE55\IEXPLORE.exe" www.google.com
The & is used to start more than one process using the same command line. Using && will allow you to start additional processes only if the previous process started without issue.
Reply With Quote