Command Prompt, also known as cmd.exe or cmd (after its executable file name), is the command-line interpreter on Windows NTWindows CEOS/2 and eComStation operating systems. It is the counterpart of COMMAND.COM in DOS and Windows 9x systems (where it is also called "MS-DOS Prompt"), and analogous to the Unix shells used on Unix-like systems. The initial version of Command Prompt for Windows NT was developed by Therese Stowell.
In Windows, Command Prompt is compatible with COMMAND.COM but provides the following extensions over it:
  • Provides more detailed error messages than the blanket "Bad command or file name" (in the case of malformed commands) of COMMAND.COM. In the OS/2, errors are reported in the chosen language of the system, their text being taken from the system message files. The HELP command can then be issued with the error message number to obtain further information.
  • Supports using of arrow keys to scroll through command history. This function was only available to COMMAND.COM via an external component called DOSKEY.
  • Adds command-line completion for file and folder paths.
  • Treats the caret character (^) as the escape character; in other words, the character following it is to be taken literally. There are special characters in Command Prompt and COMMAND.COM (e.g. "<", ">" and "|") that are meant to alter the behavior of the command line processor. The caret character forces the command line processor to interpret them literally.
  • Supports delayed variable expansion[further explanation needed] (Windows 2000 and later), fixing DOS idioms that made using control structures hard and complex.[2] The extensions can be disabled, providing a stricter compatibility mode.
Internal commands have also been improved:
  • The DelTree command was merged into the RD command, as part of its /S switch.
  • SetLocal and EndLocal commands limit the scope of changes to the environment. Changes made to the command line environment after SetLocal commands are local to the batch fileEndLocal command restores the previous settings.[3]
  • The Call command allows subroutines within batch file. The Call command in COMMAND.COM only supports calling external batch files.
  • File name parser extensions to the Set command are comparable with C shell.
  • The Set command can perform expression evaluation.
  • An expansion of the For command supports parsing files and arbitrary sets in addition to file names.
  • The new PushD and PopD commands provide access past navigated paths similar to "forward" and "back" buttons in a web browser or File Explorer.
  • The conditional IF command can perform case-insensitive comparisons and numeric equality and inequality comparisons in addition to case-sensitive string comparisons. This was available in DR-DOS (by Novell) but not in PC DOS (by IBM) or MS-DOS (by Microsoft).