opening multiple .exe's with a .bat

Copper0

Limp Gawd
Joined
Dec 20, 2002
Messages
183
I'm trying to open 2 files with one click. I put it in a .bat file hoping it was that easy.
Code:
@ECHO OFF
C:\Progra~1\KeirNet\K9\K9.exe
C:\Progra~1\Outloo~1\msimn.exe

But that doesn't open the second app until the first one closes.

I tried call, start......well that's all....

What am i missing?
 
Try this (It's been a very long time though)

Code:
@ECHO OFF
start C:\Progra~1\KeirNet\K9\K9.exe
start C:\Progra~1\Outloo~1\msimn.exe

You may have to add a switch to the start call for it to work right.
 
Back
Top