Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DOS Batch File - Opening Multiple Apps at once

Status
Not open for further replies.

mshanafelt

Programmer
May 14, 2002
10
0
0
US
Hello,

I'm trying to write a DOS batch file that will open up two applications in sequence without having to close the first app before the second app launches.

The easiest way to replicate the problem is to create a batch that is simply:

notepad
calc

In this example, first notepad would open and then wait until you actually close the notepad application to to launch the calculator app.

I want the two apps to launch at the same time. I tried putting "Call notepad" & "Call calc" in the batch file, but no cigar.

Is what I'm asking possible using just a batch file?

TIA
 
echo off
Start notepad.exe
Start calc.exe
exit

-Volkoff007
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top