OK I made those files into a bootable ISO, usable in MS Virtual PC (a free ISO tester)
http://www.megaupload.com/?d=K43450GTand here is MS Virtual PC 2007 :
http://www.microsoft.com/downloads/details.aspx?FamilyId=04D26402-3199-48A3-AFA2-2DC0B40A73B6&displaylang=enOK, starting virtual PC 2007 and testing this ISO, let's see ...
OK it boots with CD-ROM support
It boots to drive "X" (the CD rom drive)

(I use Fdisk to make a new partition in C)
(this requires a restart)
format /S C:
(this formats C, the /S makes it bootable)
Xcopy X: /E C:
(this copies all the contents of the CD-ROM to the hard drive)
A: (enter)
This goes to the system files on the bootable ISO
md c:\dos
(this makes a directory DOS on the C drive)
copy *.* c:\dos
(this copies the system files to c:\dos - I think this makes a dirty DOS install)
C: (enter)
(this puts us back at the hard drive)
cd dos
(this puts us in the directory DOS)
edit autoexec.bat
(this allows us to edit that file)
(Change path=A:\ to Path=C:\DOS)
(completely remove the line SET DIRCMD... also DOS and DOS and ECHO)
(change the line x: to c:)
(and save and exit the text editor, use ALT, arrow keys, and ENTER if you don't have a mouse)
copy config.sys c:\
copy autoexec.bat c:\
copy himem.sys c:\
(these lines copy those files to the root of the hard drive)
(Now I remove the CD / ISO and restart to see if C: is in business)
(OK that worked, now we have a DOS install)
(now that you have a DOS install you can type things like "edit autoexec.bat" and it works)
cd vantage
cd glaunch
glaunch
(these three lines take us to the game launcher directory and run it)
But it crashes

It has the error message
Exiting due to signal sigsegvAnd that is as far as I got ...