hey ppl! does anyone know how to create a batch file that will open multiple windows that run different commands in each window?
Any help would be great https://forums.windrivers.com/
l8r
------------------
"knowledge is power"
Printable View
hey ppl! does anyone know how to create a batch file that will open multiple windows that run different commands in each window?
Any help would be great https://forums.windrivers.com/
l8r
------------------
"knowledge is power"
Create a shortcut for each command that you want to run. If the commands you are trying to run are native DOS commands and not EXE files, then you'll have to put the commands in a batch file and call that batch file from the shortcut. Next, create a "master" batch file that calls all the others using the following syntax:
Start shrtcut1.pif
Start shrtcut2.pif
Start shrtcut3.pif
etc
etc
------------------
https://forums.windrivers.com/ I help others in the name of my Lord, Jesus Christ.
... In Addition:
if it is Batch files i mind -
call 1.bat
call 2.bat
call 3.bat
Etc..
You have to use call because if not - the first batch file executed from the original will terminate the original Batch file Execution.
------------------
It Works Better if you Plug it in, It Works far better if you Turn it ON!
Gabriel, to clarify - the CALL command will not open a new DOS window which is what he wants to do. The START command will open a new window for each command, though.
------------------
https://forums.windrivers.com/ I help others in the name of my Lord, Jesus Christ.
thanks for your replys. The 'start'
command did it.
l8r
------------------
"knowledge is power"
I Like it.