vote up 2 vote down star
1

What is the order in which the Windows command prompt executes files with the same name but different extensions?

For example I have a bunch of executable files (something.cmd, something.bat, something.exe), which of these would be executed when I typed "something" into a command prompt (given they were on the path etc). If that file did not exist which one would then be executed?

I know this is a simple question but I'd like to know if there's a reference someone has that describes this.

flag

No reference but you could try this yourself. And, knowing MS, it may vary across OS versions. :-) – jro Mar 3 at 4:24

2 Answers

vote up 2 vote down

I believe this is what you are looking for

http://support.microsoft.com/kb/35284

link|flag
for reference, google .bat .com .exe order – Peter LaComb Jr. Mar 3 at 4:25
It does somewhat, but it doesn't say if it prefers cmd to bat, etc. Also it's for the command.com interpreter, the 16bit one. – Daemin Mar 3 at 4:26
.cmd files aside, that order still stands (MS wouldn't break compatibility THAT badly). I don't have a good reference to support that though. I'd suspect that .CMD files would come after .bat – Peter LaComb Jr. Mar 3 at 4:31
vote up 3 vote down check

Okay, I did some quick experimentation based on some other searches I had going.

The gist is that the order of the commands is dependent on the order the extensions are stored in the PATHEXT environment variable. So initially I had:

PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.RB;.RBW

and for the example above the order in which it would run it was:

something.exe
something.bat
something.cmd

Changing the order which they were defined in the PATHEXT environment variable did indeed change the order in which they were executed.

link|flag
Hing: accept own answer. – Joshua Mar 3 at 4:58

Your Answer

Get an OpenID
or

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