I choose to do the latter because it's easier for me.
Here's the syntax. Suppose I want to launch Notepad, Calculator, and Task Manager in one go:
cmd /c start notepad & start calculator & start taskmgr
- This command basically tells the computer to execute the program followed by the start command.
- The & allows you add multiple commands.
- Remember to use the program's process name in order to launch them properly






