So I’m a little confused.
I think @alexb3d’s post and screenshot was to show that the game works.
I didn’t have to do anything except extract the zip, move the contents of the “comconra” folder into the new root, edit the paths in the run.bat, and create a dosbox.conf that calls “run.bat” file.
I know that may sound like a lot, but in my experience it is standard practice when converting eXoDOS to run on Pure.
(BTW. I also had to find a CHOICE.EXE and copy it into the folder.)
Are you trying to load the eXoDOS zip unmodified?
Perform the operations I mentioned above. Then replace the contents of the run.bat with this.
:menu
@echo off
cls
echo.
echo Press 1 for Command & Conquer: Red Alert Allied Campaign
echo Press 2 for Command & Conquer: Red Alert Soviet Campaign
echo Press 3 for Command & Conquer: Red Alert Aftermath
echo Press 4 for Command & Conquer: Red Alert Counter Strike
echo Press 5 for Network Multiplayer
echo Press 6 to Quit
echo.
echo This game contains 4 discs. The choice above loads the required
echo disc for that campaign. If you attempt to start a different
echo campaign than the one you select here, you will have to hit
echo ctrl-f4 to switch through the mounted CD's until you find the
echo right one.
echo.
echo To play the hidden campaign, choose Counterstrike and hold
echo SHIFT while clicking on the speaker on the main menu.
echo.
choice /C:123456 /N Please Choose:
if errorlevel = 6 goto quit
if errorlevel = 5 goto network
if errorlevel = 4 goto CS
if errorlevel = 3 goto AM
if errorlevel = 2 goto RAS
if errorlevel = 1 goto RAA
:RAA
@imgmount d ".\cd\Red Alert CD1.iso" ".\cd\Red Alert CD2.iso" ".\cd\Red Alert Counterstrike CD3.cue" ".\cd\Red Alert Aftermath CD4.cue" -t cdrom
cd redalert
cls
@ra
goto quit
:RAS
@imgmount d ".\cd\Red Alert CD2.iso" ".\cd\Red Alert CD1.iso" ".\cd\Red Alert Counterstrike CD3.cue" ".\cd\Red Alert Aftermath CD4.cue" -t cdrom
cd redalert
cls
@ra
goto quit
:AM
@imgmount d ".\cd\Red Alert Aftermath CD4.cue" ".\cd\Red Alert CD1.iso" ".\cd\Red Alert CD2.iso" ".\cd\Red Alert Counterstrike CD3.cue" -t cdrom
cd redalert
cls
@ra
goto quit
:CS
@imgmount d ".\cd\Red Alert Counterstrike CD3.cue" ".\cd\Red Alert CD1.iso" ".\cd\Red Alert CD2.iso" ".\cd\Red Alert Aftermath CD4.cue" -t cdrom
cd redalert
cls
@ra
goto quit
:network
@imgmount d ".\cd\Red Alert Aftermath CD4.cue" -t cdrom
cls
network
:quit
exit
(Only the paths to CD images are changed.)
Then create a dosbox.conf with these contents.
[autoexec]
c:
@run.bat
You can load the dosbox.conf in Pure.
If you have
dosbox_pure_conf = "inside"
in your DOSBox-pure.opt, you can zip the folder contents into a “Command and Conquer - Red Alert (1997).dosz” file and it will automatically load in Pure.