How To Launch Multiple Programs At Once

In some instances like we would like to launch multiple programs like Browser, RSS feed reader, Email Client, Messenger etc, but you’ll do this manually by double clicking the icons, but the easier way to do this is to create a batch file, with commands to launch the required programs with their paths, Here’s how to do this.

Steps :

  1. Open NotePad, Start –> Run –> Type “notepad”
    run
  2. Type the commands for each program in a new line in this format,

    start /d “Program Folder Path” ExeFileName

    batchfile

  3. Save as batch file (.bat) from File –> Save As, give filename with extension (.bat)save-batch

launch Thats it, you can how launch all the programs that you’ve mentioned in the batch file by double clicking the created Batch File.

Note : This works in Windows OS only.

Note : You can also add this batch file to Windows Startup Folder to start all the programs of the batch file to start during the system startup.

Similar Post  How To Remove Blur From Images and ReFocus Images

2 comments

  1. Richard Thomas Reply

    Great tip, thanks!

    One thing that i’ve run into when doing this: the start command sometimes doesn’t work when the title parameter isn’t supplied. I’ve resorted to always doing:

    start “” /d “Path” file.exe

    Rich

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.