How to Launch Multiple Applications at Once on Windows 11/10 Guide

This tutorial is about How to Launch Multiple Applications at Once on Windows 11/10. Recently I updated this tutorial and will try my best so that you understand this guide. I hope you guys like this blog, How to Launch Multiple Applications at Once on Windows 11/10. If your answer is yes after reading the article, please share this article with your friends and family to support us.

Check How to Launch Multiple Applications at Once on Windows 11/10

By the time your PC starts up, it will be busy opening all the necessary applications. You may need Chrome, Paint, Calculator, Outlook, etc. to open every day and it is certainly difficult to find and double-click these applications to launch them every day. How do you double click a file on your desktop and have all these applications open for you at once? Well, this article is about how to do it easily.

A batch file is a file that contains a set of commands that the command line interpreter (CLI) will execute in sequential order. So if you want to open multiple apps at once, you just need to write commands to launch these apps and put them in a batch file. So when you double click on this batch file, it will run and all the required applications will be launched at once. It is very simple, although it may seem complicated.

How to launch multiple apps at once in Windows 11/10?

  • First, you’ll need to collect the paths of the apps you want to open on your PC. Then you will create a batch file.
  • Click the Start button on the taskbar and find the app you want to add to the script. Then right-click on your app and select Open File Location from the menu.
  • In File Explorer, you will see that the app is highlighted. Right-click on the application icon and from the menu that opens, select Properties.
  • When the “Properties” window opens, click in the Target field and press Ctrl + A on the keyboard to select all. Then press Ctrl + C to copy the value of this field.
  • Now open any text editor like Notepad, Wordpad or MS Word. Then use the keyboard shortcut Ctrl + V to paste the copied data. Repeat the above steps and collect the path of all the programs you want to add to the batch file.
  • When you’ve written down all the paths to your favorite apps, open a Notepad file. To do that, press the Windows + R keys from the keyboard. In the Run box, type “notepad” and then press Enter from the keyboard. When Notepad opens, copy the following code into the notepad file using Ctrl + C (to copy) and Ctrl + V (to paste):-

@echo off

cd “PATH” start APPLICATION

  • In the above code that you pasted into Notepad, replace “PATH” with the “path” to your application and “APPLICATION” with the name of your application’s executable file. For example, if the Edge executable path is:-

“C:Program Files (x86)MicrosoftEdgeApplicationmsedge.exe” Then to use it you will replace “PATH” in the code with the following:-

“C:Program Files (x86)MicrosoftEdgeApplication” Then replace APP with the following:-

msedge.exe

  • You must repeat the steps for all your other apps. If you choose to have Edge and Chrome open at the same time, your code should look like this:

@echo off

cd “C:Program Files (x86)MicrosoftEdgeApplication” start msedge.exe

cd “C:Program FilesGoogleChromeApplication”start chrome.exe At the end of your code, type the following to close the command prompt:-

exitFinally your code should look like this:-

@echo off

cd “C:Program Files (x86)MicrosoftEdgeApplication” start msedge.exe

cd “C:Program FilesGoogleChromeApplication”start chrome.exe

Departure

  • When you’re done, File Explorer will open. Select All Files from the “Save as type” drop-down menu. Give the file a name, and then after the file name, type .bat. Then click the Save button.
  • You should now see a batch file in the specified location. Double-clicking on the created batch file will open all your favorite programs. If you want to add or remove the applications from the batch file, right click on the file and select the “Edit” option. Add or remove relevant lines from programs. When you’re done editing, simply save the file by pressing the Ctrl + S buttons.

Final remarks: How to Launch Multiple Applications at Once on Windows 11/10

I hope you understand this article, How to Launch Multiple Applications at Once on Windows 11/10. If your answer is no, you can ask anything via the contact forum section related to this article. And if your answer is yes, please share this article with your friends and family to give us your support.

Check Also

Is Heartland Season 17 Confirmed? CBC Revealed a Big Announcement? Heartland Season 17 Release date and Latest Updates » Amazfeed

excerpt

Leave a Reply

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