PDA

View Full Version : .BAT Support


Jacob Greenleaf
April 6th 04, 11:09 PM
How can you make it so that when you launch a program from a .BAT that you
dont have to wait for the program to close to launch another program from
the same .BAT file.

Example bat file:

@echo off
cd \
cd Documents and Settings\************\Desktop\Diablo II
Diablo II.exe
cd ..
cd D2mapper
D2maphack.exe
cd..
Echo Thanks for using Aazn's D2Loader.
echo Press any key to exit
pause
exit

How can I make it so that it launches ALL the programs at once?

[Aazn]

Jim
April 6th 04, 11:14 PM
You have to use the Start command:

start "" d2mapper.exe

(just type "help start" to see all the available options)

HTH

Jim


"Jacob Greenleaf" > wrote in message
...
> How can you make it so that when you launch a program from a .BAT that you
> dont have to wait for the program to close to launch another program from
> the same .BAT file.
>
> Example bat file:
>
> @echo off
> cd \
> cd Documents and Settings\************\Desktop\Diablo II
> Diablo II.exe
> cd ..
> cd D2mapper
> D2maphack.exe
> cd..
> Echo Thanks for using Aazn's D2Loader.
> echo Press any key to exit
> pause
> exit
>
> How can I make it so that it launches ALL the programs at once?
>
> [Aazn]
>
>

Google