Hi i am using windows 7 64bit
Here is the code snippet i am using to start
@echo off
call "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
call "G:\League of Legends\lol.launcher.exe"
exit
But unless i close LOLRecorder.exe it wont start my lol.launcher.exe.... basically i want both running and the cmd prompt exit after they start. Whats wrong here? I checked out another stackoverflow answer Here but it refers to the same method i am using.
EDIT:
With the start command it just starts 2 terminal windows and nothing starts!
@echo off
start "C:\Program Files (x86)\LOLReplay\LOLRecorder.exe"
start "G:\League of Legends\lol.launcher.exe"
exit