batch files

C

C. M. G.

In win98, I could start (multiple) applications with batch files, such as

start "C:\Program Files\Outlook Express\MSIMN.EXE"
start "C:\Program Files\Internet Explorer\iexplore.exe"

In winXP, running such a batch file opens 2 dos windows, but does not open
the apps.

Is it possible to run batch files as in win98, and if so, how?

Thanks,

Clem.
 
T

ThePainter

You need an extra couple of ""

start "" "C:\Program Files\Outlook Express\MSIMN.EXE"

Notice the spaces in between start and "" and "C:/.....
 
W

Wesley Vogel

Both of these work.
Mine has fewer characters. :cool:

start "" "C:\Program Files\Outlook Express\MSIMN.EXE"
start "" "C:\Program Files\Internet Explorer\iexplore.exe"

start MSIMN.EXE
start iexplore.exe
 
C

C. M. G.

Thank you both! Win98 did not seem to need the second set of quotation
marks, but both files work great. Thanks again.

Clem.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top