All Tutorials

Your One-Stop Destination for Learning and Growth

How to Run Multiple Windows Applications with One Click

This tutorial explains how to create a batch file that allows you to start multiple Windows applications with just one click. This is particularly useful for power users who frequently use several applications together.

Prerequisites

Before starting, make sure you have the following:

  1. Admin Privileges: To create a shortcut or a batch file, you need admin privileges.
  2. Text Editor: We will be using a text editor to write the batch file. Notepad or any other preferred text editor is fine.

Creating Shortcuts

Firstly, let's create shortcuts for all the applications that you want to run in one click. To create a shortcut:

  1. Go to the application whose shortcut you want to create.
  2. Right-click on the application and select "Create Shortcut". A shortcut will be created at the location of your cursor.
  3. Repeat these steps for all the applications you wish to include in your batch file.

Creating the Batch File

Now, let's create a batch file that runs all these applications when executed.

  1. Open a text editor (e.g., Notepad).
  2. Write the following line at the beginning of the file: @echo off This command prevents the display of commands being executed in the Command Prompt window.
  3. For each application shortcut, add a new line with the following format: start "" "path\to\application.exe" Replace "path\to\application.exe" with the actual path to your application's executable file. Add as many lines as you have applications.
  4. Save this file with a .bat extension (e.g., multiApp.bat). Make sure it's saved in an easily accessible location, like the desktop or Start Menu.
  5. Right-click on the newly created batch file and select "Run as administrator". This is important to ensure that all applications run correctly.

Conclusion

You have now successfully created a batch file that starts multiple Windows applications with just one click. Use this technique to streamline your workflow, increase productivity and save time. Happy multitasking!

Published June, 2016