0XC000011B

Fix STATUS_INVALID_IMAGE_NE_FORMAT (0xC000011B) fast

This error means Windows can't run an old 16-bit NE executable. Quick fix: use a 32-bit wrapper or NTVDM. Real cause: 64-bit Windows drops support for NE format.

Quick answer (for the impatient)

This error means the .exe is an old 16-bit New Executable (NE) format, and your 64-bit Windows can't run it natively. Your fix: either use a virtualization tool like DOSBox or otvdm (recommended), or enable NTVDM on 32-bit Windows. If you're on 64-bit, NTVDM isn't available — you need a wrapper.

Why this happens

I know this error is infuriating — you double-click an installer or a legacy tool and get nothing but a hex code. Let me explain what's happening under the hood.

The error STATUS_INVALID_IMAGE_NE_FORMAT (0xC000011B) pops up when Windows encounters a file in the New Executable (NE) format. That format was used by 16-bit Windows apps (Windows 1.0 through 3.x) and some DOS extenders. Back in the day, it was fine. But 64-bit versions of Windows dropped support for the NT Virtual DOS Machine (NTVDM) that handled these files. So when you try to launch one, the loader sees an image header it doesn't recognize and throws that error.

I've seen this most often with:

  • Old setup programs for Windows 3.1 games or utilities
  • Legacy corporate apps that were never updated past Windows 95
  • Some DOS-based installers that use an NE stub
Real-world trigger: A user tried to install a 1994 accounting package on Windows 10 Pro 64-bit. The setup.exe was NE format. They got 0xC000011B every time.

Fix steps

1. Confirm the file is NE format

Before anything else, let's make sure. Download a tool like CFF Explorer or use file command in a Linux subsystem. Or just look at the file size: NE executables are usually under 1 MB. If you see a PE header (modern) instead, you're barking up the wrong tree.

2. Use otvdm (best all-around fix)

otvdm (formerly WineVDM) is an open-source wrapper that runs NE executables on 64-bit Windows. I've used it for years — it's reliable and runs most 16-bit apps.

  1. Download the latest release from the otvdm GitHub page.
  2. Extract the zip to a folder (e.g., C:\otvdm).
  3. Right-click your .exe file, select Open with > Choose another app, browse to otvdm.exe.
  4. Check Always use this app and click OK.

That's it. Most NE apps run without further tweaks. If the app needs a specific working directory, launch otvdm from command line with otvdm.exe "path\to\app.exe".

3. DOSBox for DOS-based NE files

Some NE files actually contain DOS code (like old installers). DOSBox handles those better. Download DOSBox 0.74-3, mount the folder as a drive, and run the .exe. I've fixed 0xC000011B this way for a few weird cases otvdm couldn't handle.

4. Virtual machine (last resort)

If the app is complex — maybe it needs direct hardware access or specific drivers — run it inside a 32-bit Windows XP or Windows 98 virtual machine. Use VirtualBox or VMware. Install a 32-bit guest OS, transfer the file, and run it there. NTVDM works on 32-bit Windows by default. This is overkill for a simple installer, but for legacy database apps, it's the only path.

Alternative fixes (when main ones fail)

Check file integrity

Sometimes a corrupted download triggers this error even if the file is actually PE. Run certutil -hashfile filename.exe SHA1 and compare against the original hash. If it's wrong, re-download.

Rename and retry

I've seen a handful of cases where antivirus software blocks the old header. Temporarily disable real-time protection, then launch the app via otvdm. Re-enable after.

Use a 32-bit Windows installation

If you have access to a 32-bit version of Windows 10 (yes, it's still available for some SKUs), boot from that. NTVDM is present, and the error won't appear. This is a nuclear option but works if you need the app daily.

Prevention tip

Once you get the app running, check if there's a 32-bit or 64-bit update. Many old apps have been recompiled. For example, some classic games have GOG versions that run natively. If no update exists, keep your otvdm setup handy — it's stable across Windows 10 and 11 updates. I've used the same otvdm folder for 4 years without issues.

Also, avoid renaming .exe files to .com or .scr — that won't fix the NE format and can confuse other tools. The error is about the header, not the extension.

If you're still stuck, reply below with the exact file name and size — I'll help you figure out the right wrapper. This error is annoying, but it's not a dead end.

Related Errors in Windows Errors
0XC00000BC STATUS_REMOTE_NOT_LISTENING (0XC00000BC) Fixed 0X000036D9 SXS XML_E_INTERNALERROR 0x000036D9 Fix 0X00001A3D Fix ERROR_ENLISTMENT_NOT_FOUND (0X00001A3D) on Windows 0XC00D32D4 NS_E_SCHEMA_CLASSIFY_FAILURE (0XC00D32D4) — Schema classification failure

Was this solution helpful?

EP
Erropedia Team
Tech Support Editors
The Erropedia editorial team researches and documents real-world tech errors from across Windows, Linux, macOS, networking, databases, cloud platforms, and more. Every solution is reviewed for accuracy and updated as software and systems evolve.