vote up 8 vote down star
6

I would like to find the full path to a program in Windows. Is there an equivalent to the UNIX command 'which'? On UNIX, which command prints the full path of the given command.

flag

What does "which" do on Unix? – Foredecker Nov 20 '08 at 4:21
Foredecker: "which" searches the PATH for the executable that will be run if you type a command at the shell prompt. – Greg Hewgill Nov 20 '08 at 4:28
for example, if you have 5 versions of Java installed and you don't know which one is being used you can type "which java" and it gives you the PATH to the binary – ninesided Nov 20 '08 at 4:41
1  
Why are folks modding up wrong answers? The equivalent to 'which' is 'where.exe'. Michael Ratanapintha was the first correct one. – Foredecker Nov 22 '08 at 5:05
@Foredecker, MR says it's "where" in Win2k3 but Win2k3 wasn't part of the question. If "where" isn't in the other Windows versions, other answers are also valid. IMNSHO, the answer that works on all Windows versions is the best. Also, the other answers aren't wrong, just different ways of doing it. – paxdiablo Nov 22 '08 at 12:55

9 Answers

vote up 2 vote down check

There isn't one built in, but you can use a Python script: wh.py

link|flag
vote up 5 vote down

Not in stock Windows but it is provided by Services for Unix and there are several simple batch scripts floating around that accomplish the same thing such this this one.

link|flag
vote up 1 vote down

The best version of this I've found on Windows is Joseph Newcomer's "whereis" utility, which is available (with source) from his site.

The article about the development of "whereis" is worth reading.

link|flag
vote up 0 vote down

If you have PowerShell installed (which I recommend), you can use the following command as a rough equivalent (substitue programName for your executable's name):

($Env:Path).Split(";") | Get-ChildItem -filter programName*

More here: http://www.codeassassin.com/blog/PermaLink,guid,fd1967d1-f844-4e29-82e2-f2d6424b4ef9.aspx

link|flag
Why the downmod? – RexE Feb 3 at 5:48
vote up 15 vote down

You can do this with standard Windows by using the environment variable modifiers, as follows:

c:\> for %i in (cmd.exe) do @echo.   %~$PATH:i
   C:\WINDOWS\system32\cmd.exe

c:\> for %i in (python.exe) do @echo.   %~$PATH:i
   C:\Python25\python.exe

You don't need any extra tools and it's not limited to PATH since you can substitute any environment variable (in the path format) that you wish to use.

link|flag
Hey, I wish I had learned that! Too bad it doesn't work with MS-DOS or Win9x (that is, with command.com). (Raymond Chen has a more "elaborate" version you can turn into a batch file: blogs.msdn.com/oldnewthing/archive/… ) – crosstalk Jan 1 '09 at 3:27
@Michael, if you're still using DOS or Win95, finding executables on the path are the least of your problems :-) – paxdiablo Apr 9 at 5:41
vote up 10 vote down

Windows Server 2003 and later provide the WHERE command which does some of what which does (though it won't recognize built-in shell commands like cd and matches all types of files, not just executable commands). It will even accept wildcards (so where nt* finds all files in your PATH whose names start with nt). Try where /? for help.

link|flag
vote up 2 vote down

Michael mentions this - the command in Vista is 'where'

link|flag
vote up 2 vote down

The GnuWin32 tools have which, along with a whole slew of other Unix tools.

link|flag
vote up -1 vote down

I have created tool similar to Ned Batchelder:

Searching .dll and .exe files in PATH

While my tool is primarly for searching of various dll versions it shows more info (date, size, version) but it do not use PATHEXT (I hope to update my tool soon).

link|flag

Your Answer

Get an OpenID
or

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