How do you make a shorcut that launches 2 appz?

Ph33zy

Senior member
Mar 5, 2000
944
0
76
sorry for being dumb, but how do you make a batch file... =/ thanks again..
 

Ph33zy

Senior member
Mar 5, 2000
944
0
76
yea im running xp. So is there a way to run two programs at once in xp? Also can i make the batch file close the cmd prmpt if i could make one?
 

rh71

No Lifer
Aug 28, 2001
52,844
1,049
126
Follow all the links within this thread to learn to write batch files.

To close the command prompt at the end... just type EXIT as the last line inside the batch file.
 

bsobel

Moderator Emeritus<br>Elite Member
Dec 9, 2001
13,346
0
0
Originally posted by: IamDavid
What OS? I don't think you can run batch files in XP.

Not sure what gave you that idea, batch files work fine.
Bill
 

josphII

Banned
Nov 24, 2001
1,490
0
0
forgive me for being an idiot but i didnt think you could do this in a batch file. batch files run one line of code at a time, right? so if you have two lines, one for each program you want to run, the batch file would actually wait for the first program to close before launching the 2nd
 

bsobel

Moderator Emeritus<br>Elite Member
Dec 9, 2001
13,346
0
0
Originally posted by: josphII
forgive me for being an idiot but i didnt think you could do this in a batch file. batch files run one line of code at a time, right? so if you have two lines, one for each program you want to run, the batch file would actually wait for the first program to close before launching the 2nd

Thats why you would use the start command, as in:

start notepad.exe
start calc.exe

Bill