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

The moment your PC boots up, you will be busy opening all the necessary applications. You may need Chrome, Paint, Calculator, Outlook etc. to open every day and it’s certainly hard to find and double click these apps to launch those apps every day. How do you double-click a file on your desktop and have all these apps 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 to be executed in sequential order by the Command Line Interpreter (CLI). So if you want to open multiple apps at the same time, just write commands to launch those apps and put them in a batch file. So when you double click on this batch file it will run and all required applications will be launched at once. It is very simple, although it may seem complicated.

How to Launching multiple apps at the same time in Windows 11/10?

Final note

I hope you like the guide How to Launch Multiple Applications at Once on Windows 11/10. In case if you have any query regards this article you may ask us. Also, please share your love by sharing this article with your friends. cd “PATH” start the APP “C:Program Files (x86)MicrosoftEdgeApplication”Then replace APP with the following :- msedge.exe cd “C:Program Files (x86)MicrosoftEdgeApplication”start msedge.exe cd “C:Program FilesGoogleChromeApplication”start chrome.exeNo final 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 exit