F@H Batch File

freestyler105

Golden Master
Messages
7,883
I want to create a batch file to run both instances of F@H by just clicking one file, instead of having to go to the folders of both instances and opening each one.

The folder the first one is in is C:\FAH, the second one is C:\FAH2. The executable's are both named FAH504-Console.exe.

Here's what I've got so far:
Code:
@echo off
cd C:\FAH
C:\FAH\FAH504-Console.exe
cd C:\FAH2
C:\FAH2\FAH504-Console.exe
The problem is, it opens the first instance, in C:\FAH\FAH504-Console.exe, then just runs that. I guess I need to somehow open a new command window, and then tell it to run the second instance in that window?
 
Code:
@echo off
cd C:\FAH
C:\FAH\FAH504-Console.exe
cd C:\
cd FAH2\
FAH504-Console.exe

try that

and did u try renaming?
 
borat_sagdiyev said:
Code:
@echo off
cd C:\FAH
C:\FAH\FAH504-Console.exe
cd C:\
cd FAH2\
FAH504-Console.exe

try that

and did u try renaming?
Nah, didn't work...
Neither did renaming...
 
@echo off
cd C:\
cd C:\FAH
C:\FAH\FAH504-Console.exe
@echo off
cd C:\
cd FAH2\
C:\FAH2\FAH504-Console.exe

I honestly don't know, but it is worth a shot
 
Back
Top Bottom