How to create a shortcut in to launch multiple programs at a time


Sometime we need to launch two or more at a time. What we do, we click the shortcut twice of those two different to launch the programs.

An example will make you understand the situation better. Suppose, you need to open Notepad and Calculator almost every time. We will create a batch file, so that, on double clicking the batch file both programs (say Calculator and Notepad) will open at a time.

Open Notepad. Write the code:

@echo off
rem Notepad
cd %windir%\system32
start notepad.exe
rem Calculator
cd %windir%\system32
start calc.exe
exit

It will look like this:

How to create a shortcut in to launch multiple=

Now, click File > Save as.. and save it with the name you like with bat extension. For example, we have saved it as Notepad_Calculator.bat. Do not forget to change the file type from text files to all files:


How to create a shortcut in to launch multiple=

You will get the batch file, just double click to launch the programs at a time:

How to create a shortcut in to launch multiple=


Incoming search terms:

windows 7 how to start two programmes with one short cut,shortcut to launch multiple applications windows 7,create multiple shortcuts,windows 7 launch 2 application shortcut,windows 7 how to open 2 programs from one shortcut,win7 start multiple programs,Shortcut to start multiple applications freeware,shortcut to open multiple files,multiple program shortcut,multi exe shortcuts windows 7,make a windows shortcut to run many files/links,how to run multiple exe files with 1 click,how to open multiple shortcuts at one time,how to make a shortcut open 2 programs,how to made a shortcut with many application,how to create a shortcut for multiple programs,windows gadget launch 2 exe files with 1 shortcut
0saves
If you enjoyed this post, please consider leaving a comment or subscribing to the RSS feed to have future articles delivered to your feed reader.
About Abhishek

Abhishek Ghosh is an Orthopedic Surgeon, Inventor with 216 Patents, Current editor of The Customize Windows Media Group. You can follow and know more about Dr. +Abhishek Ghosh on Google Plus and follow on Twitter as @AbhishekCTRL.

Trackbacks

  1. [...] This post was mentioned on Twitter by Corrine, Abhishek Ghosh. Abhishek Ghosh said: How to create a shortcut in to launch multiple programs at a time http://bit.ly/ibAgnF [...]

Speak Your Mind

*