Answers for "run program batch file"

CSS
1

open applications bat start

REM Open multiple programs using a batch file
REM Open first application
@echo off
cd "C:\Program Files\CCleaner"
start CCleaner64.exe

REM Open second application
cd "C:\Program Files (x86)\Wunderlist2"
start Wunderlist.exe

exit
Posted by: Guest on October-25-2020
0

run batch file from cmd

Command Prompt
To run a batch file with Command Prompt, use these steps.

Open Start.
Search for Command Prompt, right-click the top result, and select the Run as administrator option.
Type the path and name of the batch file, and press Enter:

C:\PATH\TO\FOLDER\BATCH-NAME.bat
Posted by: Guest on March-05-2021

Browse Popular Code Answers by Language