1.

Solve : Call another batch file?

Answer»

How do I write a runall.bat batch file to RUN cmd1.bat after FINISH, it will run CMD2.bat , after it finish running cmd2 then will cmd3.bat and quit . i am using windowsxp

C:\log\runall.bat

C:\log\A\cmd1.bat

C:\log\B\cmd2.bat

C:\log\C\cmd3.bat


easy
c:\log\runall.bat -----

call C:\log\A\cmd1.bat

call C:\log\B\cmd2.bat

call C:\log\C\cmd3.bat



Graham



Discussion

No Comment Found