batch commands?

Questions about programming languages and debugging
Post Reply
User avatar
ayu
Staff
Staff
Posts: 8109
Joined: 27 Aug 2005, 16:00
18
Contact:

batch commands?

Post by ayu »

How do i run multiple files in batch?

i tried this

Code: Select all

@echo off
echo Running Banlist
banlist.bat
echo Done, now running Frozen Throne
ft.bat
echo Done, now running autorefresher
af.bat
have tried with call and start also, doesn't want to run the other 2 bat files

nvm solved it with

Code: Select all

@echo off
echo Running Banlist
start banlist.bat
echo Done, now running Frozen Throne
"Frozen Throne.exe"
echo Done, now running autorefresher
start af.exe
echo Done, now running Custom Kick
start ck.exe
"The best place to hide a tree, is in a forest"

Post Reply