Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Does anyone know how to ask powershell where something is?
For instance "which notepad" and it returns the directory where the notepad.exe is run from according to the current paths.

share|improve this question

6 Answers

up vote 53 down vote accepted

The very first alias I made once I started customizing my profile in powershell was 'which'.

New-Alias which get-command

To add this to your profile, type this:

"`nNew-Alias which get-command" | add-content $profile

The `n is to ensure it will start as a new line.

share|improve this answer
1  
thanks, where do I put this to get it to stick? – DevelopingChris Sep 15 '08 at 18:20
You can put it in your profile script. More on profiles - msdn.microsoft.com/en-us/library/bb613488(VS.85).aspx – Steven Murawski Sep 15 '08 at 18:45
I edited above to address your question ChanChan – halr9000 Sep 15 '08 at 18:50
6  
i like running: Get-Command <command> | Format-Table Path, Name so i can get the path where the command sits too. – Jugglingnutcase Nov 27 '12 at 15:17
1  
Is there any way to have the path all the time without to type '| Format-Table Path, Name' ? – Guillaume Jan 11 at 8:18
show 1 more comment

I usually just type:

gcm notepad

or

gcm note*

gcm is the default alias for Get-Command.

On my system, gcm note* outputs:

[27] ยป gcm note*

CommandType     Name                                                     Definition
-----------     ----                                                     ----------
Application     notepad.exe                                              C:\WINDOWS\notepad.exe
Application     notepad.exe                                              C:\WINDOWS\system32\notepad.exe
Application     Notepad2.exe                                             C:\Utils\Notepad2.exe
Application     Notepad2.ini                                             C:\Utils\Notepad2.ini

You get the directory and the command that matches what you're looking for.

share|improve this answer
its a bit messy, but way cleaner than custom functions and arbitrary splits – DevelopingChris Sep 15 '08 at 15:29

This seems to do what you want (i found it on http://huddledmasses.org/powershell-find-path/ )

Function Find-Path($Path, [switch]$All=$false, [Microsoft.PowerShell.Commands.TestPathType]$type="Any")
## You could  comment out the function stuff and use it as a script instead, with this line:
# param($Path, [switch]$All=$false, [Microsoft.PowerShell.Commands.TestPathType]$type="Any")
   if($(Test-Path $Path -Type $type)) {
      return $path
   } else {
      [string[]]$paths = @($pwd);
      $paths += "$pwd;$env:path".split(";")

      $paths = Join-Path $paths $(Split-Path $Path -leaf) | ? { Test-Path $_ -Type $type }
      if($paths.Length -gt 0) {
         if($All) {
            return $paths;
         } else {
            return $paths[0]
         }
      }
   }
   throw "Couldn't find a matching path of type $type"
}
Set-Alias find Find-Path
share|improve this answer
+1 for Jaykul's Find-Path script. – Steven Murawski Sep 15 '08 at 17:45

Someone pointed out my blog post about "find" ... but although that's great, it's not really "which" since it works with any file(type) and doesn't find cmdlets, functions or aliases ... the built-in Get-Command should be what you want, but isn't (in v1) because it doesn't sort the output. I wrote a script that sorts Get-Command ... but if you want a strict which-like behavior, you might try modifying it like this:

function which([string]$command) {
begin { $Script:ErrorActionPreference = "SilentlyContinue" }
process {
if(!$_) { $_ = $command }

Microsoft.PowerShell.Core\Get-Command $_ |
   sort {
      if($_.CommandType -match "ExternalScript|Application") {
         1000 + [array]::IndexOf( (Get-Content Env:Path).Split(";"),
                                  [IO.Path]::GetDirectoryName($_.Definition) )
      } else {
         [int]$_.CommandType
      } 
   } | Select -first 1 # only return the first item
}
}

Hypothetically, you could also modify it to only output the path, instead of the object (which gets formatted as a table), but first of all you'd have to account for functions and cmdlets which don't have paths (eg: the output of which which) and secondly, it's PowerShell ... objects are good :)

share|improve this answer

Check this: Powershell Which

The code provided there suggests this:

($Env:Path).Split(";") | Get-ChildItem -filter notepad
share|improve this answer

Try the where command on Windows 2003 or later (or Windows 2000/XP if you've installed a Resource Kit): http://ss64.com/nt/where.html

BTW, this received more answers in other threads:

Is there an equivalent of 'which' on windows?

Powershell equivalent to unix which command?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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