Launch Multiple Programs with One Click
Speed up your workflow by launching your favorite programs in one click using batch (.bat) files:
- Create a folder and add shortcuts to your favorite programs.
- Rename the shortcuts so that each consists of a single word.
- Create a text file and change the name to
something.bat. - Right-click on the
.bat("batch") file and select "Edit". - Emulate the following template according to your specific programs.
rem comments should begin with rem
rem note: this file launches all of my favorite apps!
rem note: replace the names below with your own..
@echo off
start %SystemRoot%\system32\cmd.exe
start firefox http://google.com/
start dreamweaver
start photoshop
start winamp
start notes.txt
@echo on
That’s all there is to it! Of course, there are many other neat things you can do with batch files, but we leave that for you to discover elsewhere. You may want to create additional batch files for various kinds of work. For example, you could create one batch file for web-development apps, another for graphic-design apps, and so on. All shortcuts and batch files may be placed in the same folder. Then simply customize shortcuts to your various batch files and use them to consolidate your quick launch and clean up your desktop!
Related articles
- Roll Your Own SEO Log
- Install Windows 98SE and Windows XP Pro on Sony Vaio PCG-F430
- Cultivating a Successful Screenshot Archive
- Get Organized, Save Time with the AT&T 8525 Pocket PC
- Five-Step Feed-Portfolio Makeover
- Rethinking Site Functionality, Presentation, and Structure
- Preparing for Business
About this article
This is article #248, posted by Perishable on Tuesday, November 28, 2006 @ 11:50am. Categorized as Technology, and tagged with optimize, organize, software, streamline, tricks, tutorial, windows. Updated on November 05, 2007. Visited 15966 times. 2 Responses »
1 • July 9, 2007 at 12:46 pm — Ankit says:
This was helpful !! thanks !! Good work !