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?
|
10
|
|
|||
|
|
|
|
From Wikipedia:
|
||||||||||||||||
|
|
|
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):
|
|||
|
|
|
|
The extension makes no difference. There are slight differences between COMMAND.COM handling the file vs. CMD.EXE |
||
|
|
|
|
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 |
||
|
|
|
|
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. |
||
|
|
|
|
Here is a compilation of verified information from the various answers and cited references in this thread:
Here is a list of
References: wikipedia: Comparison of command shells |
||||||||||||
|
|
|
Slightly off topic, but have you considered Windows Scripting Host? You might find it nicer. |
|||
|
|
