Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

cmd.exe

From Wikipedia, the free encyclopedia
(Redirected fromCMD.EXE)
Command prompt program
Not to be confused withCOMMAND.COM.
For other uses, seeCMD.
"Command Prompt" redirects here. For the concept, seeCommand prompt.

Command Prompt (cmd.exe)
Other namesWindows Command Processor
Developer(s)Microsoft,IBM, ReactOS contributors
Initial releaseDecember 1987; 37 years ago (1987-12)
Operating system
PlatformIA-32,x86-64,ARM (and historicallyDEC Alpha,MIPS,PowerPC, andItanium)
PredecessorCOMMAND.COM
TypeCommand-line interpreter

Command Prompt, also known ascmd.exe orcmd, is the defaultcommand-line interpreter for theOS/2,[1]eComStation,ArcaOS,Microsoft Windows (Windows NT family andWindows CE family), andReactOS[2] operating systems. OnWindows CE .NET 4.2,[3]Windows CE 5.0[4] andWindows Embedded CE 6.0[5] it is referred to as theCommand Processor Shell. Its implementations differ between operating systems, but the behavior and basic set of commands are consistent.cmd.exe is the counterpart ofCOMMAND.COM inDOS andWindows 9x systems, and analogous to theUnix shells used onUnix-like systems. The initial version ofcmd.exe forWindows NT was developed by Therese Stowell.[6]Windows CE 2.11 was the first embedded Windows release to support a console and a Windows CE version ofcmd.exe.[7] The ReactOS implementation ofcmd.exe is derived from FreeCOM, theFreeDOS command line interpreter.[2]

Operation

[edit]

cmd.exe interacts with the user through acommand-line interface. On Windows, this interface is implemented through theWin32 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 realpipes in command pipelines, allowing both sides of the pipeline to run concurrently. As a result, it is possible to redirect thestandard 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&&.[8]

When using this separator in the Windowscmd.exe, each command must complete successfully for the following commands to execute. For example:

C:\>CommandA&& CommandB&& CommandC

In the above example,CommandB will only execute ifCommandA completes successfully, and the execution ofCommandC depends on the successful completion ofCommandB. To process subsequent commands even if the previous command produces an error, the command separator& should be used.[9] For example:

C:\>CommandA& CommandB& CommandC

OnWindows 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 asWindows 2000 orWindows NT 4.0, the maximum length of the string is 2047 (211-1) characters. This limit includes the command line, individualenvironment variables that are inherited by otherprocesses, and all environment variable expansions.[10]

Quotation marks are required for the followingspecial characters:[8]

& < > [ ] { } ^ = ; ! ' + , ` ~

and white space.

Internal commands

[edit]

OS/2

[edit]
OS/2 Window (cmd.exe) onMicrosoft OS/2 Version 1.3

The following is a list of the Microsoft OS/2internalcmd.execommands:[11]

Windows NT family

[edit]
cmd.exe onWindows 11

The following list of internal commands is supported bycmd.exe onWindows NT and later:[12]

Windows CE

[edit]
Pocket CMD v 3.0 (cmd.exe) onWindows CE 3.0

The following list of commands is supported bycmd.exe on Windows CE .NET 4.2,[13] Windows CE 5.0[14] and Windows Embedded CE 6.0:[15]

  • attrib
  • call
  • cd
  • chdir
  • cls
  • copy
  • date
  • del
  • dir
  • echo
  • erase
  • exit
  • goto
  • help
  • if
  • md
  • mkdir
  • move
  • path
  • pause
  • prompt
  • pwd
  • rd
  • rem
  • ren
  • rename
  • rmdir
  • set
  • shift
  • start
  • time
  • title
  • type

In addition, thenet command is available as an external command stored in\Windows\net.exe.

ReactOS

[edit]
Command Prompt (cmd.exe) onReactOS

The ReactOS implementation includes the following internal commands:[2]

  • ?
  • alias
  • assoc
  • beep
  • call
  • cd
  • chdir
  • choice
  • cls
  • color
  • copy
  • ctty
  • date
  • del
  • delete
  • delay
  • dir
  • dirs
  • echo
  • echos
  • echoerr
  • echoserr
  • endlocal
  • erase
  • exit
  • for
  • free
  • goto
  • history
  • if
  • memory
  • md
  • mkdir
  • mklink
  • move
  • path
  • pause
  • popd
  • prompt
  • pushd
  • rd
  • rmdir
  • rem
  • ren
  • rename
  • replace
  • screen
  • set
  • setlocal
  • shift
  • start
  • time
  • timer
  • title
  • type
  • ver
  • verify
  • vol

Comparison with COMMAND.COM

[edit]

On Windows,cmd.exe is mostly compatible withCOMMAND.COM but provides the following extensions over it:

  • More detailed error messages than the blanket "Bad command or file name" (in the case of malformed commands) ofCOMMAND.COM. In OS/2, errors are reported in the chosen language of the system, their text being taken from the system message files. TheHELP command can then be issued with the error message number to obtain further information.
  • Supports using of arrow keys to scroll through command history. (Under DOS this function was only available underDR DOS (throughHISTORY) and later via an external component calledDOSKEY.)
  • Addsrotating command-line completion for file and folder paths, where the user can cycle through results for the prefix using theTab, andShift+Tab ↹ for reverse direction.
  • Treats thecaret character (^) as theescape character; the character following it is to be taken literally. There are special characters incmd.exe andCOMMAND.COM 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 withSETLOCAL EnableDelayedExpansion, allowing values of variables to be calculated at runtime instead of during parsing of script before execution (Windows 2000 and later), fixing DOS idioms that made usingcontrol structures hard and complex.[16] The extensions can be disabled, providing a stricter compatibility mode.

Internal commands have also been improved:

  • TheDELTREE command was merged into theRD command, as part of its/Sswitch.
  • SetLocal andEndLocal commands limit the scope of changes to the environment. Changes made to the command line environment afterSetLocal commands are local to thebatch file.EndLocal command restores the previous settings.[17]
  • TheCall command allows subroutines within batch file. TheCall command inCOMMAND.COM only supports calling external batch files.
  • File name parser extensions to theSet command are comparable withC shell.[further explanation needed]
  • TheSet command can performexpression evaluation.
  • An expansion of theFor command supports parsing files and arbitrary sets in addition to file names.
  • The newPushD andPopD commands provide access past navigated paths similar to "forward" and "back" buttons in a web browser orFile Explorer.
  • The conditionalIF command can performcase-insensitive comparisons and numeric equality and inequality comparisons in addition to case-sensitive string comparisons. (This was available in DR-DOS, but not inPC DOS orMS-DOS.)

See also

[edit]

References

[edit]
  1. ^"Notes on using the default OS/2 command processor (CMD.EXE)".www.tavi.co.uk.
  2. ^abc"reactos/reactos".GitHub. December 4, 2021.
  3. ^"Command Processor Shell (Windows CE .NET 4.2)".Microsoft Docs. June 30, 2006.Archived from the original on August 31, 2022.
  4. ^"Command Processor Shell (Windows CE 5.0)".Microsoft Docs. September 14, 2012.Archived from the original on August 28, 2022.
  5. ^"Command Processor Shell (Windows Embedded CE 6.0)".Microsoft Docs. 2012.Archived from the original on September 5, 2022.
  6. ^Zachary, G. Pascal (1994).Showstopper! The Breakneck Race to Create Windows NT and the Next Generation at Microsoft.The Free Press.ISBN 0-02-935671-7.
  7. ^Douglas McConnaughey Boling (2001).Programming Microsoft Windows CE (2nd ed.).Microsoft Press.ISBN 978-0735614437.
  8. ^ab"cmd".Microsoft Learn. September 12, 2023.Archived from the original on November 21, 2023.
  9. ^"Command Redirection, Pipes - Windows CMD - SS64.com".ss64.com. RetrievedSeptember 23, 2021.
  10. ^Command prompt (Cmd.exe) command-line string limitation
  11. ^Microsoft Operating System/2 User's Reference(PDF).Microsoft. 1987.
  12. ^Hill, Tim (1998).Windows NT Shell Scripting.Macmillan Technical Publishing.ISBN 978-1578700479.
  13. ^"Command Processor Commands (Windows CE .NET 4.2)".Microsoft Docs. June 30, 2006.Archived from the original on August 31, 2022.
  14. ^"Command Processor Commands (Windows CE 5.0)".Microsoft Docs. September 14, 2012.Archived from the original on August 31, 2022.
  15. ^"Command Processor Commands (Windows Embedded CE 6.0)".Microsoft Docs. January 5, 2012.Archived from the original on September 6, 2022.
  16. ^"Windows 2000 delayed environment variable expansion".Windows IT Pro. Archived fromthe original on July 13, 2015. RetrievedJuly 13, 2015.
  17. ^"Setlocal".TechNet.Microsoft. September 11, 2009. RetrievedJanuary 13, 2015.

Further reading

[edit]

External links

[edit]
Wikimedia Commons has media related toWindows Command Prompt.
Wikibooks has a book on the topic of:Windows Batch Scripting
Management
tools
Apps
Shell
Services
File systems
Server
Architecture
Security
Compatibility
API
Games
Discontinued
Games
Apps
Others
Spun off to
Microsoft Store
Ecosystem
Interpreters
Terminals
File system navigation
File management
Archiving
Disk management
Processes
Registry
User environment
File contents
Scripting
Networking
Maintenance and care
Boot management
Software development
Miscellaneous
Retrieved from "https://en.wikipedia.org/w/index.php?title=Cmd.exe&oldid=1282894124"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp