BlackTree Security · Infrastructure · Automation · AI

Play Command & Conquer in DOSBox: Modern Setup Guide

Command & Conquer still runs well in DOSBox, but a reliable setup needs more than a copied game folder and a few hard-coded commands. This guide shows how to install the original DOS release from media you own, keep its writable files separate from the CD images, switch discs cleanly, and launch the game with a dedicated configuration.

Which version should you choose? Use DOSBox if you want the original DOS release and already own suitable installation media. For the easiest experience on a current PC, consider the officially supported Command & Conquer Remastered Collection instead.

Original DOS release or a modern edition?

OptionBest forWhat you need
Original DOS release in DOSBoxThe original interface, behaviour and installationYour own original discs or legally created disc images
Command & Conquer Remastered CollectionA straightforward modern experienceThe current EA app or Steam release
The Ultimate CollectionAccess to a broader selection of Command & Conquer gamesThe current EA app or Steam release

This article is specifically about the original DOS version. It does not provide game downloads or links to unofficial “abandonware” copies. Use original media that you own, or image files that you are legally permitted to use.

What you need

  • A current DOSBox build. DOSBox Staging for Windows is a practical choice for a new installation.
  • Your original Command & Conquer installation disc or a disc image made from it.
  • Enough free space for a local DOS drive, the installed game and any disc images.
  • A backup of any existing DOSBox configuration before you change it.

If DOSBox is new to you, first read Modern DOSBox Setup: Folders, Mounts and Configuration. It explains the isolated folder structure used below and why you should never mount the root of your real Windows drive as the DOS C: drive.

1. Create a clean folder structure

Keep the writable DOS drive, disc images and configuration files in separate folders. For example:

C:\DOSBox\
├── drives\
│   └── c\
│       └── games\
│           └── cnc\
├── images\
│   └── cnc\
│       ├── GDI.iso
│       ├── NOD.iso
│       └── COVERT.iso
└── configs\
    └── cnc.conf

The filenames are examples. Use the names and image format that match your own media. If a disc contains audio tracks, a CUE/BIN image normally preserves more of the original disc structure than a data-only ISO.

2. Mount the DOS drive and installation disc

Start DOSBox Staging and enter the following commands, changing the paths and filenames where necessary:

mount c "C:\DOSBox\drives\c"
imgmount d "C:\DOSBox\images\cnc\GDI.iso" -t iso
d:
dir

The first command exposes only the isolated C:\DOSBox\drives\c folder as the DOS C: drive. The second mounts the disc image as D:. Use the dir command to inspect the disc, then run the installer supplied on your edition—often named INSTALL or SETUP.

When the installer asks for a destination, use a DOS path such as C:\GAMES\CNC. Do not install the game into the mounted D: drive: a CD or image is read-only, while the game needs a writable location for settings and saved games.

3. Create a dedicated Command & Conquer configuration

A per-game configuration avoids changing settings for every DOS program. Add the following to the [autoexec] section at the end of cnc.conf:

[autoexec]
@echo off
mount c "C:\DOSBox\drives\c"
imgmount d "C:\DOSBox\images\cnc\GDI.iso" "C:\DOSBox\images\cnc\NOD.iso" "C:\DOSBox\images\cnc\COVERT.iso" -t iso
c:
cd \games\cnc
c&c

Remove any image you do not own or need, and adjust the final executable name if your edition uses a different one. Mounting several images in one command creates a disc set. Press Ctrl+F4 to move to the next image when the game asks for another disc. On macOS, the default shortcut is Cmd+F4.

The current stable DOSBox Staging series supports the widely used imgmount form shown here. Newer DOSBox Staging documentation uses the unified mount command for image files. If you move to that release line, check its storage and disc-image documentation before changing a working configuration.

Optional: choose the first disc from a menu

The multi-image configuration above is the simplest approach. If you prefer a menu, save the following as a DOS batch file and edit the paths. It lets you decide which image should be first in the set:

@echo off
:menu
cls
echo 1) GDI disc first
echo 2) NOD disc first
echo 3) Covert Operations first
echo 4) Exit
choice /C:1234 /N Select:
if errorlevel 4 goto end
if errorlevel 3 goto covert
if errorlevel 2 goto nod
if errorlevel 1 goto gdi

:gdi
imgmount d "C:\DOSBox\images\cnc\GDI.iso" "C:\DOSBox\images\cnc\NOD.iso" "C:\DOSBox\images\cnc\COVERT.iso" -t iso
goto run

:nod
imgmount d "C:\DOSBox\images\cnc\NOD.iso" "C:\DOSBox\images\cnc\GDI.iso" "C:\DOSBox\images\cnc\COVERT.iso" -t iso
goto run

:covert
imgmount d "C:\DOSBox\images\cnc\COVERT.iso" "C:\DOSBox\images\cnc\GDI.iso" "C:\DOSBox\images\cnc\NOD.iso" -t iso
goto run

:run
c:
cd \games\cnc
c&c
goto end

:end

The IF ERRORLEVEL tests deliberately run from the highest number to the lowest because DOS interprets them as “this number or higher.” Testing them in ascending order sends every valid selection to the first matching branch. The menu also requires a compatible CHOICE command, such as the one supplied with MS-DOS 6.x or FreeDOS.

Troubleshooting

The game asks for the other disc

Press Ctrl+F4 to cycle to the next mounted image. If the prompt remains, confirm that every required image is in the same imgmount command and that the expected disc is first.

The installer cannot write files

Install to the mounted C: drive, not D:. Also check that your real C:\DOSBox\drives\c folder is writable by your Windows account.

The image mounts, but the disc contents are incomplete

A plain ISO contains one data track. If your original disc has additional audio tracks, recreate the image as CUE/BIN and mount the CUE file according to the DOSBox Staging storage documentation.

The game runs too fast, too slowly or without sound

Start with the DOSBox Staging defaults and change one setting at a time in cnc.conf. Avoid copying an old global configuration full of unrelated tweaks. A separate configuration makes every change reversible and keeps other games unaffected.

Back up the installed game

Once the game works, copy C:\DOSBox\drives\c\games\cnc and cnc.conf to your normal backup location. That preserves saved games and the known-good launch setup without duplicating the original CD images unnecessarily.

Related DOSBox guides

Official references


Originally published in December 2018. Completely rewritten in August 2020 with a safer folder structure, a corrected disc-selection menu and current DOSBox Staging guidance and reviewed in 2026.

Leave a Reply

Your email address will not be published. Required fields are marked *