In this article I will tel you about How to create a shortcut in to launch multiple programs at a time in window 7.Some time while doing work on system we need to open two program at a time in that condition we do is just visit that two program and one by one and make a click to open .But if you are able to open those at same time .
Let we took and example to describe this ,Suppose, you want to open Notepad and Calculator so we create a batch file, so that when we double click on that batch file both programs open in a same time.
To make that thing happen just follow simple and easy steps shown below:
1.First of all Open Notepad paste below code:
@echo off
rem Notepad
cd %windir%\system32
start notepad.exe
rem Calculator
cd %windir%\system32
start calc.exe
exit
2.When you add that code it will look like shown below
3.Now save this file in bat extension as if save i save it with Notepad_Calculator.bat.
4.You are done and your file will look like this
Note:Do not forget to change the file type from text files to all files
Let we took and example to describe this ,Suppose, you want to open Notepad and Calculator so we create a batch file, so that when we double click on that batch file both programs open in a same time.
To make that thing happen just follow simple and easy steps shown below:
1.First of all Open Notepad paste below code:
@echo off
rem Notepad
cd %windir%\system32
start notepad.exe
rem Calculator
cd %windir%\system32
start calc.exe
exit
2.When you add that code it will look like shown below
3.Now save this file in bat extension as if save i save it with Notepad_Calculator.bat.
4.You are done and your file will look like this
Note:Do not forget to change the file type from text files to all files
Comments
Post a Comment