It is very easy to run multiple programs on one click. Following steps should be performed to achieve this goal:
Steps:
- Create a folder anywhere on your PC. For example “E:\RunAllPrograms\”
- Now copy shortcut link of each of the programs you want to run and paste them in above folder.
- Create a batch file and name it as “RunAll.bat”.
- Write below code in the batch file
FOR %%X IN (E:\RunAllPrograms\*.*) DO rundll32 shell32.dll,ShellExec_RunDLL %%X
- Save it in same folder where you pasted shortcuts.
- Click on the shortcut to run all the programs at once.
Note: Whenever you want to add a new program or remove an old program, all you have to do is to add or remove the applications link from the folder “E:\RunAllPrograms\”.















