2537

As I sometimes have path problems, where one of my own cmd scripts is hidden (shadowed) by another program (earlier on the path), I would like to be able to find the full path to a program on the Windows command line, given just its name.

Is there an equivalent to the UNIX command 'which'?

On UNIX, which command prints the full path of the given command to easily find and repair these shadowing problems.

Wolf
  • 8,482
  • 7
  • 48
  • 92
namin
  • 34,873
  • 8
  • 55
  • 73
  • What does "which" do on Unix? – Foredecker Nov 20 '08 at 04:21
  • 3
    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 04:28
  • 3
    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 04:41
  • 10
    @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
  • 39
    I know this question arose before SuperUser, but it probably belongs there. – palswim Oct 12 '10 at 17:04
  • This was asked in other threads: [Equivalent of *Nix 'which' command in Powershell?][1] [Powershell equivalent to unix `which` command?][2] [1]: http://stackoverflow.com/questions/63805/equivalent-of-nix-which-command-in-powershell [2]: http://superuser.com/questions/34492/powershell-equivalent-to-unix-which-command – Anonymous Dec 13 '11 at 05:23
  • I found this batch file very handy http://pankaj-k.net/weblog/2004/11/equivalent_of_which_in_windows.html – Etienne Sep 21 '11 at 20:58
  • 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. – Lukasz Czerwinski Dec 28 '10 at 12:04
  • 21
    There is no `which` command in standard Unix. The POSIX utility is `type`. The C Shell has a which command, and some systems have it as an external executable. For instance, on Debian Linux, `which` comes from a package called `debutils`. This external `which` does not "see" shell built-ins, aliases or functions. `type` does; Bash's `type` has an option to suppress that and just do a path lookup. – Kaz Apr 17 '15 at 16:09
  • To illustrate @kaz' point, compare the outputs of `which -a pwd` versus `type -a pwd` – MarcH Oct 16 '19 at 02:01

26 Answers26

2730

Windows Server 2003 and later (i.e. anything after Windows XP 32 bit) provide the where.exe program which does some of what which does, though it matches all types of files, not just executable commands. (It does not match built-in shell commands like cd.) It will even accept wildcards, so where nt* finds all files in your %PATH% and current directory whose names start with nt.

Try where /? for help.

Note that Windows PowerShell defines where as an alias for the Where-Object cmdlet, so if you want where.exe, you need to type the full name instead of omitting the .exe extension.

rogerdpack
  • 50,731
  • 31
  • 212
  • 332
Michael Ratanapintha
  • 36,861
  • 4
  • 27
  • 37
  • 31
    No, because *grep* examines the *contents* of its input, which you have to give explicitly. *which* and *where.exe* only look at the *names* of the files in a set of directories set in the PATH environment variables. – Michael Ratanapintha Dec 10 '11 at 23:46
  • 12
    @Ajedi32 - Correct, _which_ is not in XP. As I said, "Windows Server 2003 and later". – Michael Ratanapintha Sep 25 '12 at 05:40
  • 3
    @MichaelRatanapintha Yeah, for some reason I was thinking that Windows Server 2003 was created before Windows XP. Man, XP is old... – Ajedi32 Sep 25 '12 at 15:51
  • 67
    watch out that this [wont work in powershell](http://stackoverflow.com/questions/16775686/why-doesnt-the-where-command-display-any-output-when-running-in-powershell/16775887) unless you type where.exe – JonnyRaa Jan 28 '14 at 14:46
  • Warning: "where" won't work on quoted paths, be sure your %path% doesn't contain any. – Drealmer Jul 27 '14 at 18:06
  • 19
    Remember that `where.exe` is not a shell builtin, you need to have `%windir%\system32` on your `%PATH%` - which may not be the case, as using `where` suggests that you may be working on problems with your path! – Tomasz Gandor Jul 08 '15 at 09:00
  • 1
    Didn't work in CMD on Server 2016 without typing `where.exe` – Edward Jan 08 '17 at 01:12
  • 13
    powershell `Get-Command` or `gcm` as mentioned in another answer is equivalent to `where` – tkokasih Sep 06 '17 at 05:51
  • 2
    Works in Windows 10 too. – Emil Stenström Feb 08 '18 at 14:50
  • 5
    Just to be explicit: `where.exe` may return multiple values, in which case the first/top most one will be invoked. `C:\Windows\System32> where.exe sqlcmd.exe` `c:\Program Files\Microsoft SQL Server\90\Tools\Binn\SQLCMD.EXE` `C:\Program Files\Microsoft SQL Server\100\Tools\Binn\SQLCMD.EXE` `C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\110\Tools\Binn\SQLCMD.EXE` – phantom-99w Nov 13 '18 at 13:45
  • Is `where` even valid outside of a `select` expression? If not, I would consider this a bug, since contextually it should be obvious that `where.exe` is intended when it is the first thing entered on the command prompt. – Chiramisu May 12 '20 at 08:34
  • Took this a step further and made a function to search path and program files/windows etc. Can easily be adapter further. See https://stackoverflow.com/a/63257980/5079799 – FreeSoftwareServers Aug 05 '20 at 03:29
  • re: `where.exe may return multiple values` But NOT necessarily in the directory order in your `echo %PATH%` environment variable. On Windows there is both a user level `PATH` variable and a system level `PATH` variable. `echo %PATH%` displays the system variable, but `which.exe` uses the user level variable first. Surprise! – Jesse Chisholm Dec 10 '20 at 03:05
301

While later versions of Windows have a where command, you can also do this with Windows XP 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, of course) that you wish to use.


And, if you want one that can handle all the extensions in PATHEXT (as Windows itself does), this one does the trick:

@echo off
setlocal enableextensions enabledelayedexpansion

:: Needs an argument.

if "x%1"=="x" (
    echo Usage: which ^<progName^>
    goto :end
)

:: First try the unadorned filenmame.

set fullspec=
call :find_it %1

:: Then try all adorned filenames in order.

set mypathext=!pathext!
:loop1
    :: Stop if found or out of extensions.

    if "x!mypathext!"=="x" goto :loop1end

    :: Get the next extension and try it.

    for /f "delims=;" %%j in ("!mypathext!") do set myext=%%j
    call :find_it %1!myext!

:: Remove the extension (not overly efficient but it works).

:loop2
    if not "x!myext!"=="x" (
        set myext=!myext:~1!
        set mypathext=!mypathext:~1!
        goto :loop2
    )
    if not "x!mypathext!"=="x" set mypathext=!mypathext:~1!

    goto :loop1
:loop1end

:end
endlocal
goto :eof

:: Function to find and print a file in the path.

:find_it
    for %%i in (%1) do set fullspec=%%~$PATH:i
    if not "x!fullspec!"=="x" @echo.   !fullspec!
    goto :eof

It actually returns all possibilities but you can tweak it quite easily for specific search rules.

paxdiablo
  • 772,407
  • 210
  • 1,477
  • 1,841
  • 7
    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: http://blogs.msdn.com/oldnewthing/archive/2005/01/20/357225.aspx ) – Michael Ratanapintha Jan 01 '09 at 03:27
  • 117
    @Michael, if you're still using DOS or Win95, finding executables on the path are the *least* of your problems :-) – paxdiablo Apr 09 '09 at 05:41
  • windows recognizes more than .exe as executable. Last time I coded a `which` back in W95/DOS days amdittedly, the search order was - current dir, then each path dir, for cmd.com, then cmd.exe, then cmd.bat So, even cmd.bat in current dir is executed befroe cmd.exe soemwhere in path – Mawg says reinstate Monica Mar 26 '10 at 00:46
  • 3
    @mawg, the original was for where you know the extension since it mirrors which under UNIX (where that extension-adding trickery doesn't occur). I've now added one which can do what you wish but it's no longer a simple command so much as a script. It first tries the unadorned command then each of the extension ones. Hope that helps. You can tweak it to your needs as you see fit (if you want the same search order as with Windows for example - this one shows all possibilities). – paxdiablo Mar 26 '10 at 01:34
  • 2
    To turn this into a batch script, create a file called "which.bat": `@echo off for %%i in (%1) do @echo. %%~$PATH:%i` To add it to an alias.bat script that you load everytime you run cmd.exe (put the above script in a new directory called C:\usr\aliases\): `DOSKEY which=C:\usr\aliases\which.bat $*` Then you can make a script to launch cmd.exe with the alias.bat file: `cmd.exe /K E:\usr\aliases\alias.bat` – Brad T. Apr 25 '14 at 20:42
  • worth noting, The example of `for %i in (_____) do @echo. %~$PATH:i` will find any extension not just exe. It works for file a.a or youtube-dl.py when that is in the path. But it is funny if you put a directory in there, it outputs it even if it's not in the path e.g. `for %i in (%TEMP%) do @echo. %~$PATH:i` – barlop Jun 13 '14 at 10:40
  • Thank you I am working on a Windows 7 with no where command, and that does the the job – s.ouchene Feb 20 '19 at 20:12
186

Under PowerShell, Get-Command will find executables anywhere in $Env:PATH.

$ Get-Command eventvwr

CommandType   Name          Definition
-----------   ----          ----------
Application   eventvwr.exe  c:\windows\system32\eventvwr.exe
Application   eventvwr.msc  c:\windows\system32\eventvwr.msc

And since powershell let's you define aliases, which can be defined like so.

$ sal which gcm   # short form of `Set-Alias which Get-Command`
$ which foo
...

PowerShell commands are not just executable files (.exe, .ps1, etc). They can also be cmdlets, functions, aliases, custom executable suffixes set in $Env:PATHEXT, etc. Get-Command is able to find and list all of these commands (quite akin to Bash's type -a foo). This alone makes it better than where.exe, which.exe, etc which are typically limited to finding just executables.

Finding executables using only part of the name

$ gcm *disk*

CommandType     Name                             Version    Source
-----------     ----                             -------    ------
Alias           Disable-PhysicalDiskIndication   2.0.0.0    Storage
Alias           Enable-PhysicalDiskIndication    2.0.0.0    Storage
Function        Add-PhysicalDisk                 2.0.0.0    Storage
Function        Add-VirtualDiskToMaskingSet      2.0.0.0    Storage
Function        Clear-Disk                       2.0.0.0    Storage
Cmdlet          Get-PmemDisk                     1.0.0.0    PersistentMemory
Cmdlet          New-PmemDisk                     1.0.0.0    PersistentMemory
Cmdlet          Remove-PmemDisk                  1.0.0.0    PersistentMemory
Application     diskmgmt.msc                     0.0.0.0    C:\WINDOWS\system32\diskmgmt.msc
Application     diskpart.exe                     10.0.17... C:\WINDOWS\system32\diskpart.exe
Application     diskperf.exe                     10.0.17... C:\WINDOWS\system32\diskperf.exe
Application     diskraid.exe                     10.0.17... C:\WINDOWS\system32\diskraid.exe
...

Finding custom executables

Unlike UNIX, where executables are files with the executable (+x) bit set, executables on windows are files present in one of the directories specified in the $PATH env. variable whose filename suffixes are named in the $PATHEXT env. variable (defaults to .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL).

As Get-Command also honours this env. variable, it can be extended to list custom executables. e.g.

$ $Env:PATHEXT="$Env:PATHEXT;.dll;.ps1;.psm1;.py"     # temporary assignment, only for this shell's process

$ gcm user32,kernel32,*WASM*,*http*py

CommandType     Name                        Version    Source
-----------     ----                        -------    ------
ExternalScript  Invoke-WASMProfiler.ps1                C:\WINDOWS\System32\WindowsPowerShell\v1.0\Invoke-WASMProfiler.ps1
Application     http-server.py              0.0.0.0    C:\Users\ME\AppData\Local\Microsoft\WindowsApps\http-server.py
Application     kernel32.dll                10.0.17... C:\WINDOWS\system32\kernel32.dll
Application     user32.dll                  10.0.17... C:\WINDOWS\system32\user32.dll

See Get-Command for more options and examples.

shalomb
  • 2,708
  • 2
  • 20
  • 17
  • 2
    It finds much more than just executables. It also catches command files – Maximilian Burszley Nov 30 '18 at 21:43
  • 2
    @TheIncorrigible1 - if you mean _command files_ such as batch files (`.BAT`, `.CMD`, etc), they are considered executable because their extensions are named in the `PATHEXT` variable (which by default is `PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.CPL`). Other executable types (e.g. `.py`, `.rb`, etc) can be added by adding the file extension in and creating an executable association with `assoc`/`ftype` - e.g. https://docs.python.org/3.3/using/windows.html#executing-scripts-without-the-python-launcher – shalomb Jan 06 '19 at 21:19
  • This should honestly be selected as the best answer now that it is 2020, since the original answer was posted back in 2008. Times have changed. PowerShell is the way, especially being that this answer is now cross-platform for wherever PowerShell exists. – ScriptAutomate Jun 16 '20 at 19:29
65

In Windows PowerShell:

set-alias which where.exe
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
cmcginty
  • 101,562
  • 37
  • 148
  • 155
41

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

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

More is here: My Manwich! PowerShell Which

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
RexE
  • 15,409
  • 14
  • 54
  • 77
  • 1
    I was looking for this exact pithy powershell command. I had been using where.exe but having to mess around with the error code on top of parsing its output is far inferior to a native powershell solution. Thanks! – scobi Oct 27 '12 at 02:17
  • 9
    But `($Env:Path).Split(";") | Get-ChildItem -filter programName*` is so easy to type... ;-) – Craig Nov 30 '14 at 08:56
  • This also fails if you have a variable in your path that is normally resolved by the system (aka %JAVA_HOME%). – dragon788 Apr 13 '17 at 15:18
  • I cannot get which.exe to work, I tried this and it worked. – Asfand Qazi May 11 '20 at 19:14
  • The `gcm` answer would be far better use of PowerShell today: https://stackoverflow.com/a/27140194/5340149 – ScriptAutomate Jun 16 '20 at 19:32
37

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

Ferruccio
  • 93,779
  • 37
  • 217
  • 294
28

In Windows CMD which calls where:

$ where php
C:\Program Files\PHP\php.exe
automatix
  • 10,950
  • 17
  • 85
  • 198
  • Where will list out all the available resources. For me, I used `where pip` and I got the three results. I am not sure which one is the executed one. – gis Jan 28 '21 at 14:59
17

Cygwin is a solution. If you don't mind using a third-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 which) for Windows, and you can just include that directory in your PATH.

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
palswim
  • 10,910
  • 6
  • 47
  • 72
  • 10
    GnuWin32 mentioned earlier by Ferruccio is much better in this case as you can have native *where* executable alone. – Piotr Dobrogost Aug 29 '11 at 09:15
  • GnuWin32 is great, and I use it, but if you want this functionality without installing the GnuWin32 tools where.exe seems like the right call. Although, I do put the GnuWin32 tools in a \bin$ share on our network so that I can use them from workstations (and in batch files) that don't have them installed locally. – Craig Nov 30 '14 at 08:57
  • 1
    When we talk about Cygwin usage in Windows, I prefer: cygpath -w "\`which \`" – mpasko256 Sep 08 '15 at 11:27
12

In PowerShell, it is gcm, which gives formatted information about other commands. If you want to retrieve only path to executable, use .Source.

For instance: gcm git or (gcm git).Source

Tidbits:

vulcan raven
  • 29,699
  • 8
  • 51
  • 90
11

I have a function in my PowerShell profile named 'which'

function which {
    get-command $args[0]| format-list
}

Here's what the output looks like:

PS C:\Users\fez> which python


Name            : python.exe
CommandType     : Application
Definition      : C:\Python27\python.exe
Extension       : .exe
Path            : C:\Python27\python.exe
FileVersionInfo : File:             C:\Python27\python.exe
                  InternalName:
                  OriginalFilename:
                  FileVersion:
                  FileDescription:
                  Product:
                  ProductVersion:
                  Debug:            False
                  Patched:          False
                  PreRelease:       False
                  PrivateBuild:     False
                  SpecialBuild:     False
                  Language:
Fez
  • 130
  • 1
  • 8
10

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.

Jon Court
  • 109
  • 1
  • 2
10

If you can find a free Pascal compiler, you can compile this. At least it works and shows the algorithm necessary.

program Whence (input, output);
  Uses Dos, my_funk;
  Const program_version = '1.00';
        program_date    = '17 March 1994';
  VAR   path_str          : string;
        command_name      : NameStr;
        command_extension : ExtStr;
        command_directory : DirStr;
        search_dir        : DirStr;
        result            : DirStr;


  procedure Check_for (file_name : string);
    { Check existence of the passed parameter. If exists, then state so   }
    { and exit.                                                           }
  begin
    if Fsearch(file_name, '') <> '' then
    begin
      WriteLn('DOS command = ', Fexpand(file_name));
      Halt(0);    { structured ? whaddayamean structured ? }
    end;
  end;

  function Get_next_dir : DirStr;
    { Returns the next directory from the path variable, truncating the   }
    { variable every time. Implicit input (but not passed as parameter)   }
    { is, therefore, path_str                                             }
    var  semic_pos : Byte;

  begin
      semic_pos := Pos(';', path_str);
      if (semic_pos = 0) then
      begin
        Get_next_dir := '';
        Exit;
      end;

      result := Copy(Path_str, 1, (semic_pos - 1));  { return result   }
      { Hmm! although *I* never reference a Root drive (my directory tree) }
      { is 1/2 way structured), some network logon software which I run    }
      { does (it adds Z:\ to the path). This means that I have to allow    }
      { path entries with & without a terminating backslash. I'll delete   }
      { anysuch here since I always add one in the main program below.     }
      if (Copy(result, (Length(result)), 1) = '\') then
         Delete(result, Length(result), 1);

      path_str := Copy(path_str,(semic_pos + 1),
                       (length(path_str) - semic_pos));
      Get_next_dir := result;
  end;  { Of function get_next_dir }

begin
  { The following is a kludge which makes the function Get_next_dir easier  }
  { to implement. By appending a semi-colon to the end of the path         }
  { Get_next_dir doesn't need to handle the special case of the last entry }
  { which normally doesn't have a semic afterwards. It may be a kludge,    }
  { but it's a documented kludge (you might even call it a refinement).    }
  path_str := GetEnv('Path') + ';';

  if (paramCount = 0) then
  begin
    WriteLn('Whence: V', program_version, ' from ', program_date);
    Writeln;
    WriteLn('Usage: WHENCE command[.extension]');
    WriteLn;
    WriteLn('Whence is a ''find file''type utility witha difference');
    Writeln('There are are already more than enough of those :-)');
    Write  ('Use Whence when you''re not sure where a command which you ');
    WriteLn('want to invoke');
    WriteLn('actually resides.');
    Write  ('If you intend to invoke the command with an extension e.g ');
    Writeln('"my_cmd.exe param"');
    Write  ('then invoke Whence with the same extension e.g ');
    WriteLn('"Whence my_cmd.exe"');
    Write  ('otherwise a simple "Whence my_cmd" will suffice; Whence will ');
    Write  ('then search the current directory and each directory in the ');
    Write  ('for My_cmd.com, then My_cmd.exe and lastly for my_cmd.bat, ');
    Write  ('just as DOS does');
    Halt(0);
  end;

  Fsplit(paramStr(1), command_directory, command_name, command_extension);
  if (command_directory <> '') then
  begin
WriteLn('directory detected *', command_directory, '*');
    Halt(0);
  end;

  if (command_extension <> '') then
  begin
    path_str := Fsearch(paramstr(1), '');    { Current directory }
    if   (path_str <> '') then WriteLn('Dos command = "', Fexpand(path_str), '"')
    else
    begin
      path_str := Fsearch(paramstr(1), GetEnv('path'));
      if (path_str <> '') then WriteLn('Dos command = "', Fexpand(path_str), '"')
                          else Writeln('command not found in path.');
    end;
  end
  else
  begin
    { O.K, the way it works, DOS looks for a command firstly in the current  }
    { directory, then in each directory in the Path. If no extension is      }
    { given and several commands of the same name exist, then .COM has       }
    { priority over .EXE, has priority over .BAT                             }

    Check_for(paramstr(1) + '.com');     { won't return if file is found }
    Check_for(paramstr(1) + '.exe');
    Check_for(paramstr(1) + '.bat');

    { Not in current directory, search through path ... }

    search_dir := Get_next_dir;

    while (search_dir <> '') do
    begin
       Check_for(search_dir + '\' + paramstr(1) + '.com');
       Check_for(search_dir + '\' + paramstr(1) + '.exe');
       Check_for(search_dir + '\' + paramstr(1) + '.bat');
       search_dir := Get_next_dir;
    end;

    WriteLn('DOS command not found: ', paramstr(1));
  end;
end.
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Mawg says reinstate Monica
  • 34,839
  • 92
  • 281
  • 509
  • 22
    Wow, there are people still using Pascal? :-) – paxdiablo Mar 26 '10 at 01:30
  • 6
    I imagine that there are. But not me. Did you see the line program_date = '17 March 1994'; – Mawg says reinstate Monica Mar 26 '10 at 12:12
  • 1
    The unit `my_funk;` is unecessary. Thanks for posting a Pascal program, reminds me of my youth! It is such a pity that Pascal did not evolve. – yannis Aug 27 '15 at 08:41
  • 2
    Oh, but it did. It is now object oriented, for instance. There is a great free, cross-platform, implementation and IDE at http://www.lazarus-ide.org/ And a direct descendant of Borland still lives in Delphi at http://www.embarcadero.com/products/delphi which is very expensive (imo) at $299 for the starter edition and $1k for the "usable" edition. However, it is cross platform - windows, iOs, Mac, Android. Get a trial edition or use Lazarus and feel 20 years younger ,-) – Mawg says reinstate Monica Aug 27 '15 at 13:36
  • 1
    @yannis "such a pity that Pascal did not evolve" ... apart from 'Turbo Pascal' Anders going on to design C# you mean? – piers7 Nov 18 '15 at 08:01
  • Or Delphi, or Lazarus? A tiny thing like object orientation does not count as evolution? – Mawg says reinstate Monica Nov 18 '15 at 08:09
  • 1
    @Mawg Delphi was the right way to go. After version 6 and when all the Borland guys fled to Microsoft it put a lot of people off, including myself. – yannis Nov 19 '15 at 05:44
  • And now it costs a minimum $1k (!) unless you buy the $299 starter version, which is very limited (last starter I bought had no 64-bit code generation and, even worse for me, no database access). Lazarus is great, but a major plus for Delphi are the thousands of (free) VCL components. – Mawg says reinstate Monica Nov 19 '15 at 12:47
  • As of now (early 2018), they must have realized that they are losing custom, and [the starter edition](https://www.embarcadero.com/products/delphi/starter) is now free (until you earn US $1k from it). It's only 32 bit, but there are free solutions to [the restrictions](https://www.embarcadero.com/products/delphi/product-editions). Either that, or Lazarus look good – Mawg says reinstate Monica Mar 27 '18 at 07:20
  • And, now, in December 2020, it has a [community edition](https://www.embarcadero.com/products/delphi/starter/free-download) - go nostalgisize yourself – Mawg says reinstate Monica Dec 05 '20 at 17:38
8

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.

Robert Gamble
  • 97,930
  • 23
  • 141
  • 137
7

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.

Tim Lesher
  • 5,867
  • 2
  • 23
  • 41
6

None of the Win32 ports of Unix which that I could find on the Internet are satistactory, because they all have one or more of these shortcomings:

  • No support for Windows PATHEXT variable. (Which defines the list of extensions implicitely added to each command before scanning the path, and in which order.) (I use a lot of tcl scripts, and no publicly available which tool could find them.)
  • No support for cmd.exe code pages, which makes them display paths with non-ascii characters incorrectly. (I'm very sensitive to that, with the ç in my first name :-))
  • No support for the distinct search rules in cmd.exe and the PowerShell command line. (No publicly available tool will find .ps1 scripts in a PowerShell window, but not in a cmd window!)

So I eventually wrote my own which, that suports all the above correctly.

Available there: http://jf.larvoire.free.fr/progs/which.exe

  • FYI I've open-sourced my which.exe tool mentioned above, and many others, on https://github.com/JFLarvoire/SysToolsLib. You may get the latest version there, report issues, etc. – Jean-François Larvoire May 11 '16 at 13:44
6

This batch file uses CMD variable handling to find the command that would be executed in the path. Note: that the current directory is always done before the path) and depending on which API call is used other locations are searched before/after the path.

@echo off
echo. 
echo PathFind - Finds the first file in in a path
echo ======== = ===== === ===== ==== == == = ====
echo. 
echo Searching for %1 in %path%
echo. 
set a=%~$PATH:1
If "%a%"=="" (Echo %1 not found) else (echo %1 found at %a%)

See set /? for help.

6

You can first install Git from Downloading Git, and then open Git Bash and type:

which app-name
Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
6

I am using GOW (GNU on Windows) which is a light version of Cygwin. You can grab it from GitHub here.

GOW (GNU on Windows) is the lightweight alternative to Cygwin. It uses a convenient Windows installer that installs about 130 extremely useful open source UNIX applications compiled as native win32 binaries. It is designed to be as small as possible, about 10 MB, as opposed to Cygwin which can run well over 100 MB depending upon options. - About Description(Brent R. Matzelle)

A screenshot of a list of commands included in GOW:

Enter image description here

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
Prayson W. Daniel
  • 9,790
  • 2
  • 35
  • 43
5

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).

Michał Niklas
  • 48,759
  • 16
  • 62
  • 100
5

Just have to post this Windows' one liner batch file:

C:>type wh.cmd
@for %%f in (%*) do for %%e in (%PATHEXT% .dll .lnk) do for %%b in (%%f%%e) do for %%d in (%PATH%) do if exist %%d\%%b echo %%d\%%b

A test:

C:>wh ssh
C:\cygwin64\bin\ssh.EXE
C:\Windows\System32\OpenSSH\\ssh.EXE

Not quite a one-liner if you wrap the code in setlocal enableextensions and endlocal.

bobbogo
  • 13,257
  • 3
  • 44
  • 53
4

For you Windows XP users (who have no where command built-in), I have written a "where like" command as a rubygem called whichr.

To install it, install Ruby.

Then

gem install whichr

Run it like:

C:> whichr cmd_here

Peter Mortensen
  • 28,342
  • 21
  • 95
  • 123
rogerdpack
  • 50,731
  • 31
  • 212
  • 332
  • 3
    I suspect that you're being downvoted because you're suggesting doing anything on Windows XP. – sebastian-c Jun 11 '18 at 15:35
  • 1
    Didn't downvote but installing Ruby to implement a trivial command is a hard sell as well. There is a for loop above that could be put into a batch script. – Gringo Suave Oct 31 '19 at 17:48
  • 2
    Does it print the opening lines to the theme song for _The Witcher_ if you run it in verbose mode? ;) – Agi Hammerthief Nov 25 '19 at 12:51
3

TCC and TCC/LE from JPSoft are CMD.EXE replacements that add significant functionality. Relevant to the OP's question, which is a builtin command for TCC family command processors.

David G
  • 113
  • 7
2

I have used the which module from npm for quite a while, and it works very well: https://www.npmjs.com/package/which It is a great multi platform alternative.

Now I switched to the which that comes with Git. Just add to your path the /usr/bin path from Git, which is usually at C:\Program Files\Git\usr\bin\which.exe. The which binary will be at C:\Program Files\Git\usr\bin\which.exe. It is faster and also works as expected.

Giovanni Bassi
  • 662
  • 5
  • 15
1

try this

set a=%~$dir:1
If "%for%"=="" (Echo %1 not found) else (echo %1 found at %a%)
0

It is possible to download all of the UNIX commands compiled for Windows, including which from this GitHub repository: https://github.com/George-Ogden/UNIX

George Ogden
  • 312
  • 4
  • 8
-1

Here is a function which I made to find executable similar to the Unix command 'WHICH`

app_path_func.cmd:

@ECHO OFF
CLS

FOR /F "skip=2 tokens=1,2* USEBACKQ" %%N IN (`reg query "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\%~1" /t REG_SZ  /v "Path"`) DO (
 IF /I "%%N" == "Path" (
  SET wherepath=%%P%~1
  GoTo Found
 )
)

FOR /F "tokens=* USEBACKQ" %%F IN (`where.exe %~1`) DO (
 SET wherepath=%%F
 GoTo Found
)

FOR /F "tokens=* USEBACKQ" %%F IN (`where.exe /R "%PROGRAMFILES%" %~1`) DO (
 SET wherepath=%%F
 GoTo Found
)

FOR /F "tokens=* USEBACKQ" %%F IN (`where.exe /R "%PROGRAMFILES(x86)%" %~1`) DO (
 SET wherepath=%%F
 GoTo Found
)

FOR /F "tokens=* USEBACKQ" %%F IN (`where.exe /R "%WINDIR%" %~1`) DO (
 SET wherepath=%%F
 GoTo Found
)

:Found
SET %2=%wherepath%
:End

Test:

@ECHO OFF
CLS

CALL "app_path_func.cmd" WINWORD.EXE PROGPATH
ECHO %PROGPATH%

PAUSE

Result:

C:\Program Files (x86)\Microsoft Office\Office15\
Press any key to continue . . .

https://www.freesoftwareservers.com/display/FREES/Find+Executable+via+Batch+-+Microsoft+Office+Example+-+WINWORD+-+Find+Microsoft+Office+Path

FreeSoftwareServers
  • 1,779
  • 14
  • 33