Cmd.exe

1

Command Prompt, also known as cmd.exe or cmd, is the default command-line interpreter for the OS/2, eComStation, ArcaOS, Microsoft Windows (Windows NT family and Windows CE family), and ReactOS operating systems. On Windows CE .NET 4.2, Windows CE 5.0 and Windows Embedded CE 6.0 it is referred to as the Command Processor Shell. Its implementations differ between operating systems, but the behavior and basic set of commands are consistent. cmd.exe is the counterpart of COMMAND.COM in DOS and Windows 9x systems, and analogous to the Unix shells used on Unix-like systems. The initial version of cmd.exe for Windows NT was developed by Therese Stowell. Windows CE 2.11 was the first embedded Windows release to support a console and a Windows CE version of cmd.exe. The ReactOS implementation of cmd.exe is derived from FreeCOM, the FreeDOS command line interpreter.

Operation

cmd.exe interacts with the user through a command-line interface. On Windows, this interface is implemented through the Win32 console. cmd.exe may take advantage of features available to native programs of its own platform. For example, on OS/2 and Windows, it can use real pipes in command pipelines, allowing both sides of the pipeline to run concurrently. As a result, it is possible to redirect the standard error stream. (COMMAND.COM uses temporary files, and runs the two sides serially, one after the other.) Multiple commands can be processed in a single command line using the command separator &&. When using this separator in the Windows cmd.exe, each command must complete successfully for the following commands to execute. For example: In the above example, CommandB will only execute if CommandA completes successfully, and the execution of CommandC depends on the successful completion of CommandB. To process subsequent commands even if the previous command produces an error, the command separator & should be used. For example: On Windows XP or later, the maximum length of the string that can be used at the command prompt is 8191 (213-1) characters. On earlier versions, such as Windows 2000 or Windows NT 4.0, the maximum length of the string is 2047 (211-1) characters. This limit includes the command line, individual environment variables that are inherited by other processes, and all environment variable expansions. Quotation marks are required for the following special characters: & < > [ ] { } ^ = ; ! ' +, ` ~ and white space.

Internal commands

OS/2

The following is a list of the Microsoft OS/2 internal cmd.exe commands:

Windows NT family

The following list of internal commands is supported by cmd.exe on Windows NT and later:

Windows CE

The following list of commands is supported by cmd.exe on Windows CE .NET 4.2, Windows CE 5.0 and Windows Embedded CE 6.0: In addition, the net command is available as an external command stored in \Windows\net.exe.

ReactOS

The ReactOS implementation includes the following internal commands:

Comparison with COMMAND.COM

On Windows, cmd.exe is mostly compatible with COMMAND.COM but provides the following extensions over it: Internal commands have also been improved:

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

View original