1.

Solve : How can i make my batch file open new batch files in new windows??

Answer»

How can i MAKE my batch file open NEW batch files in new windows?
I have tried everything but it just overrides the one i have open currently.
Please help! Show us what you have.I know it's BASIC ( ) but:
echo
cls
:start
call test1.vbs
goto


Read over the documentation for CALL in a batch file.
You CALL one batch fie from another.

example:
batch1.bat
Code: [Select]Echo this is batch one.
call batch2
echo we are done.batch2.bat
Code: [Select]echo But this is batch two.

This should be GOOD...



Discussion

No Comment Found