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.
| |||||||||||||||||||||
feedback
|
closed as off topic by casperOne♦ Feb 15 at 1:23
Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.
|
There isn't one built in, but you can use a Python script: wh.py | |||||
feedback
|
|
Windows Server 2003 and later provide the Try | |||||||||||||
feedback
|
|
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 And, if you want one that can handle all the extensions in PATHEXT (as Windows itself does), this one does the trick:
It actually returns all possibilities but you can tweak it quite easily for specific search rules. | |||||||||||||||||
feedback
|
|
The GnuWin32 tools have | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Dunno if this helps. Posted as answer because I don't knoe how to format code in comments (help?) If you can find a free pascal compiler, you can compile this, or email me & I can try to did one out, or mail back the exe or post it somewhere. I post the code, bad as it is, because at least it works & shows the algorithm necessary.
| |||||||
feedback
|
|
Surprised that nobody has mentioned cygwin as a solution yet. If you don't mind using a 3rd-party solution, then cygwin is the way to go. Cygwin gives you the comfort of *nix in the Windows environment (and you can use it in your Windows command shell, or use a *nix shell of your choice). It gives you a whole host of *nix commands (like | |||
feedback
|
|
You can a batch file having only 90 bytes from here: http://blogs.msdn.com/b/oldnewthing/archive/2005/01/20/357225.aspx Or run a C# Program - a link is placed on the website above. | |||
|
feedback
|
|
I found this batch file very handy http://pankaj-k.net/weblog/2004/11/equivalent_of_which_in_windows.html | |||
|
feedback
|
|
Go get unxutils from here: http://sourceforge.net/projects/unxutils/ gold on windows platforms, puts all the nice unix utilities on a standard windows DOS. Been using it for years. It has a 'which' included. Note that it's case sensitive though. NB: to install it explode the zip somewhere and add ...\UnxUtils\usr\local\wbin\ to your system path env variable. | ||||
|
feedback
|
|
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). | |||
|
feedback
|