Batch file to launch ED support apps?

Apps, websites, tools and helpers for Elite: Dangerous
User avatar
JohnLuke
Deadly
Deadly
Posts: 5172
Joined: Sun Apr 19, 2015 10:24 am
CMDR: JohnLuke
CMDR_Platform: PC-MAC
Contact:

Batch file to launch ED support apps?

Postby JohnLuke » Sat Dec 26, 2015 2:38 pm

Hey guys,

As we all know, there are several supporting programs that many of us run with E-D.

Some that come to mind.....

ED Market Connector
SSchanger
E-D Launder
ED Tracker Pro
OpenTrack
Fraps

...etc, etc.

Anywho.... back in the day, I used to be able to make a batch file to launch all of this kind of stuff, rather than clicking 5 icons before I can play.

I tried to make a batch file for Windows 10 based on some Google results, but it's not working. When I run the batch file, it just opens 5 new DOS windows. Any tips from the geeks in the audience? Is there a way to launch all of my E-D supporting programs automatically?

Here's my batch file code:

Code: Select all

Title Elite Startup

Start "C:\Program Files (x86)\EDMarketConnector\EDMarketConnector.exe"

Start "D:\3 Elite files\SSChanger\SSChanger.exe"

Start "C:\Frontier\EDLaunch\EDLaunch.exe"

Start "D:\3 Elite files\EDTrackerPro_GUI\UIPro20\EDTrackerPro.exe"

Start "D:\opentrack-stable-2.2 (2)\install\opentrack.exe"

pause


TIA!!
-JL

Discord Admin
Forum moderator
FB Group moderator

Image

User avatar
Cmdr Kharma
Dangerous
Dangerous
Posts: 3776
Joined: Thu Sep 18, 2014 7:28 pm
CMDR: Kharma
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby Cmdr Kharma » Sat Dec 26, 2015 3:01 pm

Try That....Prob wont work in 10......


Code: Select all

Title Elite Startup

Start "" "C:\Program Files (x86)\EDMarketConnector\EDMarketConnector.exe"

Start "" "D:\3 Elite files\SSChanger\SSChanger.exe"

Start "" "C:\Frontier\EDLaunch\EDLaunch.exe"

Start "" "D:\3 Elite files\EDTrackerPro_GUI\UIPro20\EDTrackerPro.exe"

Start "" "D:\opentrack-stable-2.2 (2)\install\opentrack.exe"

pause
Image

Tor.....Hold on.......Tor.......Wait a bit.....TOR will you stop fecking firing.......Ok......Tor I know a therapist that can help you....... :D My Cmdr also has small feet

User avatar
Cmdr Kharma
Dangerous
Dangerous
Posts: 3776
Joined: Thu Sep 18, 2014 7:28 pm
CMDR: Kharma
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby Cmdr Kharma » Sat Dec 26, 2015 3:55 pm

Hmmm just tried something like this....Separating the location and the executable.....

It will launch winamp and tracker....But not powergrid and ED.....Says it cannot find them.....Paths are correct though

Code: Select all

@echo off

cd "E:\Program Files (x86)\ROCCAT\Power-Grid"
start ROCCATPowerGrid.exe

cd "E:\Program Files (x86)\Winamp"
start winamp.exe

cd "C:\Program Files (x86)\NaturalPoint\TrackIR5"
start TrackIR5.exe


cd "P:\Program files (x86)\Frontier\EDLaunch"
start EDLaunch.exe

exit


Just changed yours to that format...See if it works

Code: Select all

Title Elite Startup

@echo off

cd "C:\Program Files (x86)\EDMarketConnector"
start EDMarketConnector.exe

cd "D:\3 Elite files\SSChanger"
start SSChanger.exe

cd "C:\Frontier\EDLaunch"
start EDLaunch.exe

cd "D:\3 Elite files\EDTrackerPro_GUI\UIPro20"
start EDTrackerPro.exe

cd "D:\opentrack-stable-2.2 (2)\install"
start opentrack.exe

exit
Image

Tor.....Hold on.......Tor.......Wait a bit.....TOR will you stop fecking firing.......Ok......Tor I know a therapist that can help you....... :D My Cmdr also has small feet

User avatar
Cmdr Kharma
Dangerous
Dangerous
Posts: 3776
Joined: Thu Sep 18, 2014 7:28 pm
CMDR: Kharma
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby Cmdr Kharma » Sat Dec 26, 2015 4:23 pm

Well after changing back to my original thought it all works......

Code: Select all

@echo off

start "" "E:\Program Files (x86)\ROCCAT\Power-Grid\ROCCATPowerGrid.exe"

start "" "E:\Program Files (x86)\Winamp\winamp.exe"
 

start "" "C:\Program Files (x86)\NaturalPoint\TrackIR5\TrackIR5.exe"


start "" "P:\Program files (x86)\Frontier\EDLaunch\EDlaunch.exe"


exit
Image

Tor.....Hold on.......Tor.......Wait a bit.....TOR will you stop fecking firing.......Ok......Tor I know a therapist that can help you....... :D My Cmdr also has small feet

User avatar
JohnLuke
Deadly
Deadly
Posts: 5172
Joined: Sun Apr 19, 2015 10:24 am
CMDR: JohnLuke
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby JohnLuke » Sat Dec 26, 2015 5:28 pm

Thanks Kharma!

The way you configured it in your first message worked fine... almost. :)

It launched everything except Ed Tracker. I went into the executable's properties and copied the path and pasted it into the batch file, but no luck. I opened a 'run' window and pasted the ER Tracker path there, and it launched just fine. Weird. I have the path right, but it won't launch from the batch file. The other 4 programs work fine though! :D

I'll tinker with it and see if I can figure why that one won't launch.

Thanks for your help!
-JL

Discord Admin
Forum moderator
FB Group moderator

Image

User avatar
Loriath
Dangerous
Dangerous
Posts: 2896
Joined: Thu Mar 05, 2015 1:12 pm
CMDR: Loriath
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby Loriath » Sat Dec 26, 2015 6:06 pm

If you use Voice Attack you can just say "Play Elite" and have it start all those programs for you, as well as any other changes you want as well.

Of course you have to make the command yourself.

:D
Image
My Commander has Small Feet
"You're doing it wrong". No, we are having Fun OUR way.
~-~The A-Team Board ~-~
12 year olds tearing around the woods on dirt bikes have LESS FUN than we do!

User avatar
Cmdr Kharma
Dangerous
Dangerous
Posts: 3776
Joined: Thu Sep 18, 2014 7:28 pm
CMDR: Kharma
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby Cmdr Kharma » Sat Dec 26, 2015 6:08 pm

No prob geezer.....A welcome diversion..... :)

Try the splitting approach with the one that won't run.....

Seems you can use both approaches in conjunction with each other....
Image

Tor.....Hold on.......Tor.......Wait a bit.....TOR will you stop fecking firing.......Ok......Tor I know a therapist that can help you....... :D My Cmdr also has small feet

User avatar
de Carabas
Master
Master
Posts: 1260
Joined: Sat Dec 27, 2014 7:23 pm
CMDR: de Carabas
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby de Carabas » Sat Dec 26, 2015 8:54 pm

You can now set SSChanger to run the EDLauncher and I'm in the process of getting it to launch the game itself (got some timing issues).

If you like I could look at the option to run other apps, shouldn't be too tricky.
Image
Rename your screen shots automatically! - Screen Shot Changer Visit MartianFire for more info.

User avatar
SpikeWLD
Harmless
Harmless
Posts: 24
Joined: Fri Nov 20, 2015 3:43 pm
CMDR: Jameson Bolmara
CMDR_Platform: PC-MAC
Contact:

Re: Batch file to launch ED support apps?

Postby SpikeWLD » Sun Jan 10, 2016 1:44 pm

+1 to that ^^, I launch TrackerIR, TCE, VoiceAttack, then ED. Sometimes I forget TCE and have to go it all over again. Just found the SSChanger, grabbing now.

Thanks,

JB
Image


Return to “Tools and Helpers”

Who is online

Users browsing this forum: No registered users and 48 guests

i