vote up 47 vote down star
10

As I understand it, .bat is the old 16-bit naming convention, and .cmd is for 32-bit Windows, i.e., starting with NT. But I continue to see .bat files everywhere, and they seem to work exactly the same using either suffix. Assuming that my code will never need to run on anyhting older than NT, does it really matter which way I name my batch files, or is there some gotcha awaiting me by using the wrong suffix?

flag

79% accept rate

7 Answers

vote up 30 vote down check

From Wikipedia:

There is no difference between the .bat and .cmd extensions when the file is directly executed. However, when a shortcut is used to launch them, .bat files run commands using the 16-bit COMMAND.COM command processor whereas if the extension is .cmd, the batch commands are run using the 32-bit Windows NT cmd.exe with all command extensions enabled. Also, the Windows 9x family only recognizes the .bat extension.

link|flag
Okay, COMMAND.com vs CMD.com. So what practical differences result from one processor running my script vs the other? – Chris Noe Sep 29 '08 at 14:51
On my system, cmd.exe executes .bat files even if started by a shortcut (WinXP SP2). – Michael Burr Sep 29 '08 at 14:55
7  
Wikipedia is wrong. Only cmd.exe is used to run batch files, whether they are .cmd or .bat. Vista runs batch files under cmd.exe in exactly the same manner as xp. – Wedge Oct 2 '08 at 1:22
1  
Wedge is correct; the %cmdcmdline% variable contains the name of the process used to run the script. From both a command console and from Explorer "cmd.exe" is used. – Patrick Cuff Dec 20 '08 at 18:33
1  
Yup. This answer is wrong, except for the first sentence. See the answer by Chris Noe. – Mark May 3 at 23:17
show 4 more comments
vote up 12 vote down

No - it doesn't matter in the slightest. On NT the .bat and .cmd extension both cause the cmd.exe processor to process the file in exactly the same way.

Additional interesting information about command.com vs. cmd.exe on WinNT-class systems from MS TechNet (http://technet.microsoft.com/en-us/library/cc723564.aspx):

This behavior reveals a quite subtle feature of Windows NT that is very important. The 16-bit MS-DOS shell (COMMAND.COM) that ships with Windows NT is specially designed for Windows NT. When a command is entered for execution by this shell, it does not actually execute it. Instead, it packages the command text and sends it to a 32-bit CMD.EXE command shell for execution. Because all commands are actually executed by CMD.EXE (the Windows NT command shell), the 16-bit shell inherits all the features and facilities of the full Windows NT shell.

link|flag
vote up 0 vote down

The extension makes no difference. There are slight differences between COMMAND.COM handling the file vs. CMD.EXE

link|flag
vote up 5 vote down

everything working in a batch should work in a cmd; cmd provides some extensions for controlling the environment. also, cmd is executed by in new cmd interpreter and thus should be faster (not noticeable on short files) and stabler as bat runs under the NTVDM emulated 16bit environment

link|flag
vote up 1 vote down

I believe if you change the value of the ComSpec environment variable to %SystemRoot%system32\cmd.exe then it doesn't matter if the file extension is .BAT or .CMD. I'm not sure, but this may even be the default for WinXP and above.

link|flag
vote up 42 vote down

Here is a compilation of verified information from the various answers and cited references in this thread:

  1. command.com is the 16-bit command processor introduced in MS-DOS and was also used in the Win9x series of operating systems.
  2. cmd.exe is the 32-bit command processor introduced in Windows NT, (64-bit Windows OS's also have a 64-bit version). cmd.exe was never part of Win9x.
  3. The ComSpec env variable defines which program is launched by .bat and .cmd scripts. (Starting with WinNT this defaults to cmd.exe.)
  4. cmd.exe is backward compatible with command.com.
  5. A script that is designed for cmd.exe can be named .cmd to prevent accidental execution on Windows 9x.

Here is a list of cmd.exe features that are not supported by command.com:

  • Long filenames (exceeding the 8.3 format)
  • Command history
  • Tab completion
  • Escape character: ^ (Use for: \ & | > < ^)
  • Directory stack: PUSHD/POPD
  • Integer arithmetic: SET /A i=%i%+1
  • Search/Replace/Substring: SET %varname:expression%
  • Command substitution: FOR /F
  • Subshells: `command`
  • Functions: CALL :label

References:

wikipedia: Comparison of command shells

link|flag
Several minor points: 1) .bat does not necessarily invoke command.com - apparently when command.com is invoked is a bit of a complex mystery; 2) command.com was introduced with MS-DOS; 3) cmd.exe can run most command.com scripts, but there are a few minor command.com things that don't work in cmd. – Michael Burr Sep 29 '08 at 23:01
Hey Mike, if you have any specifics on command.com features that don't work on cmd.exe, I think it would be worth posting a separate answer on that. – Chris Noe Sep 30 '08 at 0:02
It's been so long since I worked on Win9x or DOS the only thing I can remember is that you could do something like "cd ..." to go up more than one directory level (hey, I said minor, didn't I?). However, see my edited answer for info about command.com's processing on NT. – Michael Burr Sep 30 '08 at 5:00
cmd.exe was introduced with NT 4.0 I believe, not windows 95. – FlySwat Oct 1 '08 at 1:53
1  
Chris: see the current version of the Wikipedia article, esp. the comment by Mark Zbikowski at groups.google.com/group/… – Mark May 4 at 9:01
show 1 more comment
vote up -1 vote down

Slightly off topic, but have you considered Windows Scripting Host? You might find it nicer.

link|flag

Your Answer

Get an OpenID
or

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