Skip to content

Instantly share code, notes, and snippets.

@imasaru
Last active January 1, 2018 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imasaru/ec7c6b4e5760824fd1bfe1a2a68bf437 to your computer and use it in GitHub Desktop.
Save imasaru/ec7c6b4e5760824fd1bfe1a2a68bf437 to your computer and use it in GitHub Desktop.
Script I created originally on 10 July 2017 to launch my game programs.
@echo off
:teamwolf
echo Do you want to launch TeamSpeak and Overwolf[Y/N]?
set /P TW= Answer: %=%
if /I "%TW%"=="y" goto launchtw
if /I "%TW%"=="n" (
echo Not launching TeamSpeak and Overwolf.
goto discord
)
echo Try again.
goto teamwolf
:launchtw
echo Launching TeamSpeak...
start /D "C:\Users\%USERNAME%\AppData\Local\TeamSpeak 3 Client" ts3client_win64.exe
echo Launching Overwolf...
start /D "C:\Program Files (x86)\Overwolf" OverwolfLauncher.exe
:discord
echo Do you want to launch Discord[Y/N]?
set /P D= Answer: %=%
if /I "%D%"=="y" goto launchdis
if /I "%D%"=="n" goto launchjd
echo Try again.
goto discord
:launchdis
echo Launching Discord...
start /D "C:\Users\%USERNAME%\AppData\Local\Discord\app-*" Discord.exe
:launchjd
echo Launching JD SimWheel Server...
start /D "C:\Program Files (x86)\JD SimWheel Server" SimWheelServer.exe
:launchtr
echo Launching TruckersMP Launcher...
start /D "C:\Users\%USERNAME%\Downloads\SCS Software" TruckersMPLauncher.exe
@imasaru
Copy link
Author

imasaru commented Jan 1, 2018

Revision 93ab354 made 10 September 2017

Revision 3b46c6b made 1 January 2018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment