Open Multiple Applications With A Single Click Instantly

I recently learned a small handy trick which allows us to start multiple applications at once. If you are like me who has to open 5-6 programs at once then it will come really handy. Running multiple programs turn by turn is too boring for me, that’s why I use this trick to open multiple programs instantly.

Open a notepad and type,

@echo off

Below this line write the code to open any application, for e.g the code for opening Firefox will be,

start “Firefox” "C:\Program Files\Mozilla Firefox\firefox.exe"

Here is how you write the code, first type start and then name of application and then it’s location. Name and Location of application must be in quotation marks respectively.

You can find the location of the application by right-clicking it and then selecting Properties.

firefox properties After you have written the codes of all programs that you wan to open, go to File and click Save As, now save the file as [any file name].bat and next to Save as type, select All files as shown in the screenshot below. Please note that I have added .bat(batch file extension) at the end of file name.

batch file example

Since I open 5 different applications whenever my computer starts, here is how my .bat file looks like,

batch file Click your batch file that you have created and all programs which you  have added will open at once instantly. Enjoy!

  • Share this article!

    • Digg this!
    • Bookmark on Reddit
    • Bookmark at Delicious
    • Stumble this!
    • Share this post at Facebook
    • Tweet this!
    • Share on Yahoo! Buzz
    • Add AddictiveTips to your Technorati favorites
    • Share on Friendfeed
This entry was posted in Windows and tagged , , , , , , , , , , . Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

9 Comments

  1. Overcash
    Posted June 20, 2009 at 6:58 am | Permalink

    I wonder how to start 4 different MS Works spreadsheet files with a single mouse click?

    • Posted September 2, 2009 at 6:54 pm | Permalink

      start “” “C:\Docs\yourfile1.xls”
      start “” “C:\Docs\yourfile2.xls”
      start “” “C:\Docs\yourfile3.xls”
      start “” “C:\Docs\yourfile4.xls”

      Using start with the path to your files, it should launches files too.

  2. robert
    Posted September 9, 2009 at 1:17 am | Permalink

    i got that, i have some programs that still aske me for where to install the program, license agrement, and so on.. what can i do in my batch to fill all that information and install silently???

  3. Posted September 24, 2009 at 7:48 am | Permalink

    There’s also a program that lets you write a text file with each line being either a file, program or web page URL and after you give the text file a .multifire file extension then when you double-click on it everything will be opened. You can download the Multifire software at http://sites.google.com/site/spiveyworks/multifire

  4. notebookhdd
    Posted October 21, 2009 at 12:50 am | Permalink

    Hey I think i have made some mistake please help me ,,
    I have used the following code.
    @echo off
    start “Desktop Hard Drive” “http://acnt.com/product.asp?pf_id=HD320W512”

    This should open this website however i get a error message as “Windows cannot find the Desktop Hard drive Please check the name correctly and try again” what does this mean ,, i have saved the file as .bat

  5. Jeremy
    Posted December 17, 2009 at 12:10 pm | Permalink

    @echo off
    start iexplore.exe -new http://acnt.com/product.asp?pf_id=HD320W512
    exit

  6. Jeremy
    Posted December 17, 2009 at 5:10 pm | Permalink

    @echo off
    start iexplore.exe -new http://acnt.com/product.asp?pf_id=HD320W512
    exit

  7. Jeremy
    Posted December 17, 2009 at 10:10 pm | Permalink

    @echo off
    start iexplore.exe -new http://acnt.com/product.asp?pf_id=HD320W512
    exit

  8. Posted April 26, 2010 at 3:54 am | Permalink

    Heh, neat, and easy. Is there any way to run a for loop in a batch file? I could bother some of my friends with a for loop set to 100 opening a url or two haha.

8 Trackbacks

  1. [...] we have to create a batch file to open multiple websites. If you have read the post in the link above you will learn to make batch [...]

  2. [...] Open Multiple Applications With A Single Click Instantly [...]

  3. [...] few months back I wrote a quick tip to create a batch file so that you can launch multiple applications or websites. But now it has become much more easier, Batch Runner is a free tool that allows you to [...]

  4. [...] few months back I wrote a quick tip to create a batch file so that you can launch multiple applications or websites. But now it has become much more easier with Batch Runner. It is a free tool that [...]

  5. [...] in January we covered how you can open multiple applications and multiple websites in one click. The procedure required users to create their own batch file [...]

  6. By Run Multiple Applications In Windows 7 With Starter on January 24, 2010 at 8:11 pm

    [...] year we covered a tip which allowed the user to launch favorite applications in one click. It required no 3rd party [...]

  7. [...] a comment Last year we covered a tip which allows Windows user to launch favorite applications in one click. With this method one [...]

  8. [...] line of code into batch file. In case you don’t know how to create a batch file, learn the basics here.dc.exe -dccmd.exe –listmonitorsWhen executed, it would return the current screen resolution along [...]

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>


More in Windows (5 of 5 articles)