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.
|
|
||||
|
|
|
The very first alias I made once I started customizing my profile in powershell was 'which'.
To add this to your profile, type this:
The `n is to ensure it will start as a new line. |
|||||||||||||||||
|
|
I usually just type:
or
gcm is the default alias for Get-Command. On my system, gcm note* outputs:
You get the directory and the command that matches what you're looking for. |
|||
|
|
This seems to do what you want (i found it on http://huddledmasses.org/powershell-find-path/ )
|
|||
|
|
|
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
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 |
|||
|
|
|
Check this: Powershell Which The code provided there suggests this:
|
|||
|
|
|
Try the BTW, this received more answers in other threads: |
|||
|
|