This is a simple time saving technic if you are using your PC in regular interval and assume that you always want to open a group of programs at the same time, ideally with one click. Here the technic to save your time.
This tip will open many applications simultaneously and that too with a single click. The trick is to create a batch file that will fire up several programs same time.
1. Open Notepad.
start %SystemRoot%system32calc.exe
start %SystemRoot%system32notepad.exe
(The location of the executable file be provided are the ‘start’ keyword)
4. Now the contents of the file will look something like this.
@echo off
start %SystemRoot%system32calc.exe
start %SystemRoot%system32notepad.exe
5. The last but important step; Save the file with a .bat extension.
No comments:
Post a Comment