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.
|
6
|
|
||||||||||||
|
|
|
There isn't one built in, but you can use a Python script: wh.py |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|
|
You can do this with standard Windows by using the environment variable modifiers, as follows:
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. |
||||
|
|
|
Windows Server 2003 and later provide the |
||
|
|
|
|
Michael mentions this - the command in Vista is 'where' |
||
|
|
|
|
The GnuWin32 tools have |
||
|
|
|
|
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). |
||
|
|
