OK, try putting in the following (assuming D is your CDROM):
@ECHO OFF
CLS
START D:\FILE1.EXE
START D:\FILE2.EXE
EXIT
It might be worth typing this into a batch file and then running it (substitute D for you local HDD so you don't waste a CD) to make sure it works.
Regards.
Also, just as a little tutorial, heres an explanation of what each line means:
@ECHO OFF
You won't actually need this, I just put in by habit. Theres a command called ECHO which displays the text after it, and if you don't use @ECHO OFF, it would say, for example, ECHO Hello, rather than Hello.
CLS
Clear Screen
START D:\FILE1.EXE
Launches whatever is specified
EXIT
Obvious
Hope this helps.