VOGONS

Common searches


First post, by cl0ud

User metadata
Rank Newbie
Rank
Newbie

Hello,
I made a custom menu to launch games easily from a batch file and it works fine most of the time.
After a game ends, it automatically returns to "C:\MENU.BAT" because it is instructed to do so in the batch like this:

:OREGONTRAIL
CD MECC\OREGON
OREGON.EXE
CD\
MENU.BAT

However, if a games runs off the CD, and requires changing to D like this:

:DISTANTFRONTIERS
MOUNT -U D
MOUNT D D:\ -T cdrom
D:
DF.BAT
C:
MENU.BAT

...When the program ends, it no longer executes the "C:" command, so it can't go back to MENU.BAT automatically.
I assume it's because the drive's been changed, so it can no longer reference the batch file on C.

So is there any way it can be done? Thanks for any suggestions.