Windows – Command Prompt – Shell, Terminal, Console

cmd.execommand lineshellwindowswindows-shell

I know that cmd.exe is a console program. When you run that program, it opens your standard black and white rectangular window. Within that window, there is the Command Line Interpreter denoted by > (this is $ in *NIX systems).

So if cmd.exe == "Command Prompt" == Console Program, does that make the window that opens a Console, Console Window or a Terminal?

Bonus:

Since a shell is a program that runs other program, cmd.exe must also be one. That said, what shell is it (i.e. *NIX has bash for example)? Is it just Windows Shell?

Best Answer

What is cmd.exe?

cmd is a command-line interpreter, a program that accepts input, runs other programs and writes output.

When you run that program, it opens your standard black and white rectangular window.

Not always. You can run a second cmd.exe in a currently open cmd window without opening a new command window.

Does that make the window that opens a Console, Console Window or a Terminal?

The window is called a "Command Prompt", as indicated by it's title bar:

enter image description here

This particular command prompt is an Administrator command prompt.

Since a shell is a program that runs other program, cmd.exe must also be one

If you want to use the word shell as a description then it is a cmd shell.