vote up 1 vote down star

Hi all,

I was reading up about NTVDM.exe as I build a quick test console app and it crashed on a friends machine complaining about this EXE.

As I understand it all DOS cmd windows (C# console apps included) run as 16bit not 32bit.

Is this true? Does this mean all my works console app back office apps are running as 16bit rather than making the most of the 32bit available?

What about Windows services? As I believe we wrote it as a console app then made it run as a windows service?

Thanks

flag

What operating system are you using? – Joe90 Dec 4 '08 at 9:37
Windows XP, sorry should have said that – Jon Dec 4 '08 at 9:48
Then your services are 32-bit (unless you're running 64-bit XP) in which case it would be either 32-bit or 64-bit... – Joe90 Dec 4 '08 at 9:50

9 Answers

vote up 6 vote down check

Any .NET app that is compiled for x86 will be 32-bit

C# console apps aren't running in "real" dos - they run in a 32-bit or 64-bit environment - depending on your OS and .NET framework.

link|flag
vote up 4 vote down

As I understand it all DOS cmd windows (C# console apps included) run as 16bit not 32bit.

Is this true?

No, not at all.

You can run DOS applications under Windows, and they are 16-bit, but the fact that they look a bit console-like is pretty much just coincidence.

There are no 16-bit .NET applications, and whether an application is console mode or not makes no difference to whether it's 16 or 32 bit.

link|flag
vote up 2 vote down

A .NET console app. (or any other .NET app) will run as whatever targeted hardware it is JIT'ed to is. So for x86 it will be 32 bit.

link|flag
vote up 1 vote down

I don't know about any .NET VM implementation that is capable of running in 16-bit mode. The Microsoft .NET runtime and Mono are both 32/64 bits only. I don't know about the other smaller ones, but I would be surprised if they could work in 16-bit mode.

Also, cmd.exe runs in 32 bit mode as cmd.exe is a 32-bit Windows application. On the other hand, command.com runs in 16-bit mode.

Actually, console applications are far from being inherently 16-bit. This is just simply not true, it wasn't even true before Windows, as the x86 protected mode is 32-bits, so any game or application for DOS running in portected mode is 32-bits.

In .NET, your type of UI (or lack of UI as in Windows Services) does not affect the word length of the application. By default, .NET binaries are platform independent, and get executed as 32-bit or 64-bit application depending the type of .NET Framework, kernel, etc. of the host machine. Although they can be compiled directly to 64-bits too.

link|flag
vote up 1 vote down

MS-DOS Apps run as 16-bit apps under the ntvdm.

"Windows Console" Applications are not DOS applications, and run as a native Windows Process (where a bit in the PE Header of the EXE File identifies it as a Console Application, so that Windows can create/prep a Windows Console for the application if one does not already exist, e.g. running your Console Application from CMD or PowerShell will re-use the Console Window already created, whereas double-clicking the EXE in Explorer will create a new Console Window for the Application.)

CMD != DOS Console != DOS

Likewise, there is a full Windows Console API that has been present in Windows since at least Windows 2000 (NT5) if not sooner (though probably NT3/4 only.)

link|flag
vote up 0 vote down

There is nothing special about a console exe; it is just a PE file. So regardless of console vs winform exe vs windows service, it is just going to run in whatever mode it was compiled.

Visual Studio etc will never generate a 16-bit exe. x86 vs x64 is more interesting ;-p

Probably, your friend doesn't have the .NET framework installed (or only has 1.1).

link|flag
vote up 0 vote down

As I understand it all DOS cmd windows (C# console apps included) run as 16bit not 32bit.

You are wrong. All cmd.exe Windows are 32 or 64-Bit, depending on the architecture.

DOS died together with Windows ME almost a decade ago.

link|flag
vote up 0 vote down

Even under DOS, ".EXE" could be 16-bit or 32-bit (with appropriate coding or DOS extender library).

link|flag
vote up 0 vote down

NTVDM.EXE is the DOS emulator that supports running 16-bit .COM and .EXE files in an environment where they can assume the CPU is 16-bit and that DOS system calls are available. Its only association with command prompts is that text-mode DOS programs use the Console window to supply the emulation of a VGA screen in text mode.

As noted, there is no .NET VM available that can run under DOS. However, it might fun to start from the Mono project sources and build one that runs under FreeDOS... just to scare your friends ;-)

link|flag
i like the scaring part ;) – moogs Sep 25 at 8:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.