1. Open Notepad.
  2. Type @echo off in the first line.
  3. The next lines are used to refer to the executable files that you intend to run, say one example if you want to start Notepad and Calculator together, use the following lines. start %SystemRoot%system32calc.exe start %SystemRoot%system32notepad.exe (The location of the executable file be provided are the ‘start’ keyword)
  4. Now the contents of the file will look something like this. @echo off start %SystemRoot%system32calc.exe start %SystemRoot%system32notepad.exe
  5. The last but important step; Save the file with a .bat extension. Now you can see when you click new bat file, t will open all the programs that you have written in the code.

Δ

How to Open Multiple Programs with One Click on Windows  - 24How to Open Multiple Programs with One Click on Windows  - 30How to Open Multiple Programs with One Click on Windows  - 79How to Open Multiple Programs with One Click on Windows  - 92