Hello! I play games a lot and when I do I almost always need to start at least 3 programs each time. The game itself, Teamspeak and Dxtory. Can anyone help me find a way to start all of them at once with a single shortcut or click? A launcher app or something? I would be MOST grateful!
Hello...
Nice tutorial you have there... keep it up 
Thank You 

Olympus
Married
Certainly! Very simple too, no separate program needed, just good ol' Windows Notepad, or any other text editor that you may prefer. You just make a small .BAT (batch) file. Like this:
@echo off
start "SWTOR" /Min "H:\Games\SWTOR\launcher.exe"
start "TS3" /Min "H:\Program Files\Voice Apps\TeamSpeak\ts3client_win64.exe"
start "DXtory" /Min "E:\Program Files\Video\Dxtory\Dxtory.exe"
exit
You can add any number of programs or games that you want to auto-launch, just follow the pattern for the three I gave in the example. Here's a short description of what does what ...