How to Open Several Programs by One Click
Trick is to create a simple MS-DOS Batch file. Explore the rest of this article for more information on how you can do it step by step.
- 1
- 2
- 3
- 4Following lines should begin with "start", and contain a name of the executable file (.exe or .com) you want to include. For example: To run calculator, from your Windows "Start" menu, go to "Accessories", right click on calculator and select properties. Copy the shortcut path by highlighting it and pressing Ctrl-C. It should be similar to %SystemRoot%\system32\calc.exe
- 5
- 6
- 7
- Use "start /max" instead of just "start" in batch file, for opening the applications in full window.
- Windows systems may be configured to run programs with either a single or double-click.
- Works in Windows operating system only.
- N.B. The path to the programs must be in old DOS style (unbelievable but true) i.e. c:\progra~1\... instead of c:\program files\...
Categories:
Hacks
Edited by Rojo Don Poho, Cipher_nemo, Kals, Chris Hadley and 7 others