Windows 10

How To Run EXE From A Batch File

In this tutorial, we are going to see how to run an EXE from a batch file. The batch file contains a series of DOS (Disk Operating System) instructions. It allows triggering the execution of commands found in this file.
 

Syntax
start "windowTitle" fullPath/file.exe

 

How To Run EXE From A Batch File

The following example run the Windows Calculator from the batch file:

@echo off

start "Calculator" calc.exe

Output:
 

 

Leave a Reply

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