Multiple executables in one shortcut?

jnicola

Junior Member
May 1, 2006
3
0
0
HI,
I've wondered if this is possible and if so how I would go about doing it. Thanks.
 

MadRat

Lifer
Oct 14, 1999
11,961
278
126
batch file with call statements

call statements launch the trailing command in a new cmd.exe process and immediately moves to next statement

otherwise you have to shutdown the first program before the second will launch
 

TechnoPro

Golden Member
Jul 10, 2003
1,727
0
76
Originally posted by: MadRat
batch file with call statements

call statements launch the trailing command in a new cmd.exe process and immediately moves to next statement

otherwise you have to shutdown the first program before the second will launch

Alternatively, a batch file using START to preface each program will work too.
 

MadRat

Lifer
Oct 14, 1999
11,961
278
126
I might of confused call with start.

Haven't been scripting in WIndows of late.