open applications bat start

Solutions on MaxInterview for open applications bat start by the best coders in the world

showing results for - "open applications bat start"
Leonardo
28 Jan 2016
1REM Open multiple programs using a batch file
2REM Open first application
3@echo off
4cd "C:\Program Files\CCleaner"
5start CCleaner64.exe
6
7REM Open second application
8cd "C:\Program Files (x86)\Wunderlist2"
9start Wunderlist.exe
10
11exit