Run Multiple Programs on 1 click:
For a REGULAR computer user it's a kinda head ache to start multiple same programs or softwares, one by one by clicking on them.
as a web developer, I need to start six programs daily one by one, by clicking on them. It took my some time daily. So to save my precious time, instead of clicking , I create a batch file, put the following code in it and run it.
To do so follow these steps :-
Step 1: Open notepad. [ Win Key + R >> Notepad ]
Step 2: put this code into your notepad.
@echo offYou have to specify the path in place of "Full Path Of Your Executable Program". Which is given below in the next line.
start "" "Full Path Of Your Executable Program"
start "" "C:\eclipse\eclipse.exe"
exit
Step 3: Save the file press Ctrl + S. and in place of "File Name" text field you have to enter any file name with ".bat" extension. e.g. type "Run6Programs.bat"
That's all. You have created a batch file. By clicking, it open all the programs, whose path you have specified inside the file.
Hope this trick will save your precious time. :)