is this possible???

Status
Not open for further replies.

hansraj

In the zone
hey guys please help me out......... i want to run more than one exe

files at the same given time in a set order.... earlier in "windows me" i

did the same thing using the batch file but it doesnt work the same way

in windows xp. please tell me if it is possible using batch files only

n if yes then what r the command??????????? n whats the other alternative
 

alib_i

Cyborg Agent
You have to use the "start" command for that.
ie .. instead of
Code:
"C:\this folder\thatfile.exe"
"C:\this folder\thatfile1.exe"
"C:\this folder\thatfile2.exe"
You need to write
Code:
start "" "C:\this folder\thatfile.exe"
start "" "C:\this folder\thatfile1.exe"
start "" "C:\this folder\thatfile2.exe"
in your batch file
( dont forget the "" just after start )
This is because windows stops for one command to end before it starts the next one. When you use start command .. the command is executed and batch file understands that command is over (the execution of start command is over ) and it can proceed to next command.

-----
alibi
 
Status
Not open for further replies.
Top Bottom