Windows 10

How to Run Multiple Batch Files From One Batch File

In this tutorial, we are going to see how to run multiple batch files from one batch file by using Call command. The batch file contains a series of DOS (Disk Operating System) instructions. It allows triggering the execution of commands found in this file.
 

How to Run Multiple Batch Files From One Batch File

The following example runs three batch files(batch1, batch2 and batch3) from one batch file using Call command:

@echo off

call batch1.bat
call batch2.bat
call batch3.bat

Leave a Reply

Your email address will not be published. Required fields are marked *