How to Launch Multiple Apps Simultaneously on Windows

When you log into your Windows PC, it’s common to open multiple programs at once. What if I told you that you can launch all your frequently used applications with just a double-click?

To make this happen, you’ll need to create a batch file that contains the paths of the applications you want to open. Just follow the simple steps outlined below.

Launch Multiple Apps at Once on Windows
This batch file allows you to open as many applications as you desire. However, keep in mind that this script might not function on every version of Windows 10/11.

1. Locate the Application: Start by searching for the application you wish to include in the batch file. Right-click on the app and select Open File Location.

2. Access Properties: This action will take you to the folder where the program is installed. Right-click on the application shortcut and choose Properties.

3. Copy the Target Path: In the properties window, copy the value in the Target field by pressing CTRL+C.

4. Create a Batch File: Open a Notepad file on your computer and paste the following code:

plaintext
@echo off
cd “PATH”
start FILE
exit

Important: Replace PATH with the path to your application and FILE with the name of the executable file.

Read More: How to Fix Google Chrome Not Loading Pages on Android

5. Example Command: Your final command should look something like this:

plaintext
@echo off
cd “C:\Program Files (x86)\Skillbrains\lightshot\Lightshot.exe”
start Lightshot.exe
exit

6. Adding More Applications: You can include additional programs in your batch file using the same format for each app. For instance, if you want to launch both Lightshot and Avidemux at the same time, your code would appear as follows:

plaintext
@echo off
cd “C:\Program Files (x86)\Skillbrains\lightshot\Lightshot.exe”
start Lightshot.exe

cd “C:\Program Files\Avidemux 2.7 VC++ 64bits\avidemux.exe”
start avidemux.exe
exit

7. Save Your Batch File: Click on the File menu in Notepad and choose Save As.

Hire an Expert Wix Website Designer on Fiverr Elevate Your Online Presence

8. Naming the Batch File: Give your batch file a name of your choice, but ensure to add ‘.bat’ at the end of the filename, such as Applaunch.bat.

Now, whenever you want to launch your favorite applications, simply double-click on the .bat file! Learn More


Discover more from Welcome to ugamasontech !

Subscribe to get the latest posts sent to your email.

About ugamasontech

Welcome to UgamasonTech! I’m Ugama Stanley Chinedu, the passionate blogger behind this tech haven. With a deep-rooted love for technology and innovation, I explore the latest trends, reviews, and insights to keep you informed and ahead of the curve. Join me on a journey through the ever-evolving tech landscape as we uncover the future together.

View all posts by ugamasontech →

Leave a Reply