Skip to main content
Tech Radar TechRadar the technology experts
Sign in
  • View Profile
  • Sign out
RSS
Asia
flag of Singapore
Singapore
Europe
flag of Danmark
Danmark
flag of Suomi
Suomi
flag of Norge
Norge
flag of Sverige
Sverige
flag of UK
UK
flag of Italia
Italia
flag of Nederland
Nederland
flag of België (Nederlands)
België (Nederlands)
flag of France
France
flag of Deutschland
Deutschland
flag of España
España
North America
flag of US (English)
US (English)
flag of Canada
Canada
flag of México
México
Australasia
flag of Australia
Australia
flag of New Zealand
New Zealand
  • Phones
  • Computing
  • TVs
  • AI
  • Streaming
  • Health
  • Audio
  • VPN
  • More
    • Cameras
    • Home
    • News
    • Reviews
    • Opinion
    • How to
    • Versus
    • Deals
    • Coupons
    • Best
Tech Radar Pro
Tech Radar Gaming
Trending
  • Nintendo Switch 2
  • WWDC
  • Best laptop
  • Best VPN
  • ChatGPT
  • Best web hosting
  • NYT Wordle today

Recommended reading

Xbox Antstream Arcade Retro Classics library
Gaming Play vintage titles like Pitfall and Kaboom with Xbox Game Pass's new Retro Classics suite
A person using a desktop computer.
Pro Best Android emulator of 2025
ReactOS
Pro ReactOS, the free Windows-like OS built from scratch without Microsoft code, gets its first major update in four years
OBS and Steam logos on a green TechRadar background
Gaming PCs The best free software for your gaming PC in 2025: programs you need to know
Apple iPad Air 2024
Windows Tiny11 strikes again, as bloat-free version of Windows 11 is demonstrated running on Apple’s iPad Air – but don’t try this at home
Young woman with cat using laptop
Software & Services Best alternative operating systems of 2025
Scrabble
Artificial Intelligence Here are 5 games that ChatGPT can play that you'll love
  1. Computing
  2. Gaming Computers

How to run old DOS programs in Windows 10

How-to
By Nate Drake published 13 September 2017

Going retro

When you purchase through links on our site, we may earn an affiliate commission. Here’s how it works.

Running old DOS programs

Running old DOS programs

Are you overcome with a twinge of nostalgia when you remember battling against the forces of hell in Doom with nothing but a shotgun and a chainsaw? Do you long for the simplicity of earlier word processors like Microsoft Word 5.0 with no annoying spell checkers?

If so, you may be disappointed to learn that Windows 10 cannot run many classic DOS programs. In most cases if you try to run older programs, you'll just see an error message. 

Luckily, the free and open source emulator DOSBox can mimic the functions of old-school MS-DOS systems and allow you to relive your glory days!

In this guide, we'll learn how to find the old programs and games you love as well as how to setup and install DOSBox on your system.

Page 1 of 10
Page 1 of 10
2. Download your retroware

2. Download your retroware

If you're reading this guide, it's likely that there's a specific game or program you want to run but you may not already have a copy.

Websites like Amazon and eBay often have retro games on floppy disk and CD-ROM.

There are also a number of websites available offering 'Abandonware' : programs which are no longer actively maintained or whose developers no longer exist, which may be legal to download in your jurisdiction.

The Internet Archive contains a huge collection of MS-DOS games.  The website also has a collection of older MS-DOS applications. Many of these can be run in your browser.

Page 2 of 10
Page 2 of 10
3. Copy program files

3. Copy program files

Open the Windows File Explorer and navigate to the directory where DOSBox is installed, for instance: C:\Program Files (x86)\DOSBox-0.74.

Right-click anywhere inside the windows and choose New > Folder. This folder will be used to store your programs so give it an easy to remember name such as 'GAMES'. 

Once this has been done, move the folder containing the game or application you want to play into this new folder using copy and paste. If your game is an ISO image of a CD or DVD, you can also copy it here.

Page 3 of 10
Page 3 of 10
4. Launch DOSBox

4. Launch DOSBox

Double click on the DOSBox shortcut on the Windows 10 desktop.

First you need to point DOSBox to the location of your games by creating a virtual 'C:\' drive. You can do this with the 'mount' command e.g.:

mount C GAMES

Feel free to substitute 'GAMES' for the name of the folder you created earlier.

Press 'return' to enter this command. Next, switch to this virtual C drive simply by typing:

C:

At this point you can use the 'cd' command to change to the directory containing the game or application you want to use e.g:

cd doom
Page 4 of 10
Page 4 of 10
5. Install your program

5. Install your program

Use the DIR command to list all files inside your folder. The exact steps for installing and/or running an application or game will vary. Look out for batch (BAT) files and executables (EXE). 

You will most likely see a file named SETUP.EXE. Simply type 'setup'' to run it.

If the folder contains only an ISO, you will need to mount this separately using the 'imgmount' command e.g:

imgmount D REDALERT.ISO

You can then switch to the virtual 'D:\' drive using:

D:

Don't forget to use the 'DIR' command to list files, so you can find the installer. 

Page 5 of 10
Page 5 of 10
6. Image your floppy disks

6. Image your floppy disks

If your program is super-retro, it may be on a floppy disk.  The easiest way to load the floppies is to create an image file (IMG) of their contents and then mount them in the same way as you would an ISO image.

There are a number of programs available that allow you to image a floppy disk on Windows. These include WinImage, and MagicISO Maker. 

Once the floppy image files are inside your 'GAMES' folder, mount them using 'imgmount', for instance:

IMGMOUNT A image_1 -t floppy

Run the command 'A:' to switch to the virtual floppy drive. 

Page 6 of 10
Page 6 of 10
7. Run your program

7. Run your program

Once installation is complete, you most likely will be switched automatically to the folder in question. If not use 'cd' to change to the folder you chose during setup.

Running an application or game is accomplished in exactly the same way as for the installer. Simply use 'DIR' to list the files then enter the name of the .exe.

Once the game is running, if you find the speed is off, use Ctrl + F11 and Ctrl + F12 to slow it down and speed it up respectively.

Capture a screenshot of your progress, using Ctrl + F5. It will be saved in C:\Users\yourusername\AppData\Local\DOSBox\capture.

Page 7 of 10
Page 7 of 10
8. Enable IPX

8. Enable IPX

Certain older games support multiplayer through IPX (Internetwork Packet Exchange). DOSBox includes an emulator to allow two or more people on the same network to play multiplayer games via UDP.

To get started, you need to enable IPX in your DOSBox configuration file (.conf). Close the program if it's running, open your file explorer and navigate to :

C:\Users\yourusername\AppData\Local\DOSBox

Right click on the file and choose 'Open With', then 'More apps'. Click on 'Notepad'. 

Hold down Ctrl + F and type 'ipx' to find the section relating to multiplayer. Change "ipx=false" to "ipx=true". 

Page 8 of 10
Page 8 of 10
9. Start IPX Server

9. Start IPX Server

Once you have enabled IPX in the DOSBox Configuration file, start DOSBox itself by double clicking on the desktop shortcut. 

You can now start the IPX server, which will allow other clients on the local network to connect to you. To get started, enter the command:

ipxnet start server <port> e.g. ipxnet start server 19955

Windows Firewall may show an alert at this stage. Click 'Allow Access' to make sure multiplayer will work. 

Ask any other clients on your network to open DOSBox and run the following command to connect to you:

ipxnet connect <your-ip> <port> e.g. ipxnet connect 192.168.1.87 19955

You can now start your game.

Page 9 of 10
Page 9 of 10
10. Install a DOSBox frontend

10. Install a DOSBox frontend

As useful as DOSBox is, it can be a pain to run commands each time you want to play. There are several graphical frontends for DOSBox which try to make the process a little easier.

Once such frontend is DGBL (DOSBox Game Launcher) which allows you to create and save profile settings for games you've already installed so you can just run them straight away without going through the trouble of locating and mounting them each time. 

Many of the frontends are a work in progress, so make sure to back up your files before installing. If you download DGBL, you will need to extract the ZIP files and run 'launch.exe'.

  • Got an Apple machine? Here's how to run old software and games on your Mac
Page 10 of 10
Page 10 of 10
TOPICS
Windows 10
Nate Drake

Nate Drake is a tech journalist specializing in cybersecurity and retro tech. He broke out from his cubicle at Apple 6 years ago and now spends his days sipping Earl Grey tea & writing elegant copy.

See more Computing How Tos
Read more
Xbox Antstream Arcade Retro Classics library
Play vintage titles like Pitfall and Kaboom with Xbox Game Pass's new Retro Classics suite
A person using a desktop computer.
Best Android emulator of 2025
ReactOS
ReactOS, the free Windows-like OS built from scratch without Microsoft code, gets its first major update in four years
OBS and Steam logos on a green TechRadar background
The best free software for your gaming PC in 2025: programs you need to know
Apple iPad Air 2024
Tiny11 strikes again, as bloat-free version of Windows 11 is demonstrated running on Apple’s iPad Air – but don’t try this at home
Young woman with cat using laptop
Best alternative operating systems of 2025
Latest in Gaming Computers
MSI Thin 15
The clock's ticking on two of the best gaming laptop deals of the year (so far)
Skytech gaming PC, RTX 5060 ti graphics card, and Ryzen 7 processor on orange background with big savings text overlay
Huge Newegg summer sale includes the Ryzen 7 9800X3D, RTX 5060 Ti, and super cheap gaming PCs
The new ROG Xbox Ally
Microsoft’s ROG Xbox Ally will feature a new “Xbox full-screen experience” to finally rival the Steam Deck’s ease of use – and more Windows 11 gaming handhelds will get it too
MSI Raider A18 HX
MSI Raider A18 HX review: big in power, big in size… as in literally too big
Project Defiant
Sony announces Project Defiant, its first-ever wireless fight stick controller designed for PS5 and PC
PS5 DualSense controller and gaming PC
Gamers, let's not pretend PS Plus and Xbox Game Pass multiplayer subscriptions are okay – they're exactly why PC gaming is arguably cheaper in the long term
Latest in How Tos
Rory McIlroy using his driver for a tee shot at the US Open.
US Open 2025 live stream: how to watch the golf online, schedule, Round 1 tee times
Australian players celebrate winning the 2003 World Test Championship with the mace awarded to the winners
How to watch World Test Championship Final 2025 online: Australia vs South Africa
PARIS, FRANCE - JUNE 6: Jannik Sinner of Italy during his match against Novak Djokovic of Serbia in the semi-final of the Men&#039;s singles competition on Court Philippe-Chatrier during the 2025 French Open Tennis Tournament at Roland Garros on June 6th, 2025, in Paris, France. (Photo by Tim Clayton/Getty Images)
How to watch French Open for FREE – stream Alcaraz vs Sinner at no cost
PARIS, FRANCE - JUNE 06: Carlos Alcaraz of Spain looks on during the Men&#039;s Singles Semi Final match on Day Thirteen of the 2025 French Open at Roland Garros on June 06, 2025 in Paris, France. (Photo by Franco Arland/Getty Images)
How to watch Jannik Sinner vs Carlos Alcaraz: Live stream French Open tennis 2025 for free now, players on court
Apple developer beta announcement
How to download the macOS Tahoe 26 developer beta
Apple WWDC 2025
How to download the iOS 26 developer beta
LATEST ARTICLES
  1. 1
    Directive 8020's creative director says the game features 'two critical aspects' that change the formula of the Dark Pictures game, including real-time threats and the ability to rewind critical story choices
  2. 2
    Major Interpol operation takes thousands of infostealer sites offline, dozens arrested
  3. 3
    NordVPN giving away $50 Amazon gift cards ahead of Prime Day along with 76% off two-year plans
  4. 4
    Sam Altman doesn’t think you should be worried about ChatGPT’s energy usage - reveals exactly how much power each prompt uses
  5. 5
    "A wave of quick websites that aren't designed to last": A 15+ year tech veteran's AI warning – and long term solution

TechRadar is part of Future US Inc, an international media group and leading digital publisher. Visit our corporate site.

  • About Us
  • Contact Future's experts
  • Contact Us
  • Terms and conditions
  • Privacy policy
  • Cookies policy
  • Advertise with us
  • Web notifications
  • Accessibility Statement
  • Careers

© Future US, Inc. Full 7th Floor, 130 West 42nd Street, New York, NY 10036.

Please login or signup to comment

Please wait...