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 anything 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?
|
|
||||
|
|
|
From Wikipedia: New Quote from Wikipedia
The source for the Wikipedia quote above is actually based on this news group posting.
Note only is it a little more restrictive concerning the differences, than the Wikipedia text, but is also worth being explicitly mentioned, given the fact Mark Zbikowski himself - which gives a huge credibility bonus IMHO. |
||||
|
|
|
Here is a compilation of verified information from the various answers and cited references in this thread:
Here is a list of
Order of Execution: If both .bat and .cmd versions of a script (test.bat, test.cmd) are in the same folder and you run the script without the extension (test), by default the .bat version of the script will run, even on 64-bit Windows 7. The order of execution is controlled by the PATHEXT environment variable. See Order in which Command Prompt executes files for more details. References: wikipedia: Comparison of command shells |
|||||||||||||||
|
|
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):
|
||||
|
|
|
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 |
|||
|
|
RE: Apparently when command.com is invoked is a bit of a complex mystery; Several months ago, during the course of a project, we had to figure out why some programs that we wanted to run under CMD.EXE were, in fact, running under COMMAND.COM. The "program" in question was a very old .BAT file, that still runs daily. We discovered that the reason the batch file ran under COMMAND.COM is that it was being started from a .PIF file (also ancient). Since the special memory configuration settings available only through a PIF have become irrelevant, we replaced it with a conventional desktop shortcut. The same batch file, launched from the shortcut, runs in CMD.EXE. When you think about it, this makes sense. The reason that it took us so long to figure it out was partially due to the fact that we had forgotten that its item in the startup group was a PIF, because it had been in production since 1998. |
|||
|
|
|
These answers are a bit too long and focused on interactive use. The important differences are:
The differences are subtle though. Most of the time they aren't noticeable, only when writing complex batch scripts. In 2012 and beyond, I recommend using |
||||
|
|
|
The extension makes no difference. There are slight differences between COMMAND.COM handling the file vs. CMD.EXE |
|||
|
|
|
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. |
|||
|
|
|
Slightly off topic, but have you considered Windows Scripting Host? You might find it nicer. |
|||||||||||||
|
|
a difference: .cmd files are loaded into memory before being executed. .bat files execute a line, read the next line, execute that line... you can come across this when you execute a script file and then edit it before it's done executing. bat files will be messed up by this, but cmd files won't. |
|||||||||||||
|