495

何かがどこにあるかを PowerShell に尋ねるにはどうすればよいですか?

たとえば、「どのメモ帳」と入力すると、現在のパスに従って、notepad.exe が実行されているディレクトリが返されます。

4

15 に答える 15

487

PowerShell で自分のプロファイルをカスタマイズし始めたときに作成した最初のエイリアスは、'which' でした。

New-Alias which get-command

これをプロファイルに追加するには、次のように入力します。

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

最後の行の先頭にある `n は、新しい行として開始されるようにするためのものです。

于 2008-09-15T17:56:32.890 に答える
197

これは実際の *nix に相当するものです。つまり、*nix スタイルの出力が得られます。

Get-Command <your command> | Select-Object -ExpandProperty Definition

探しているものに置き換えるだけです。

PS C:\> Get-Command notepad.exe | Select-Object -ExpandProperty Definition
C:\Windows\system32\notepad.exe

プロファイルに追加するときは、パイプでエイリアスを使用できないため、エイリアスではなく関数を使用する必要があります。

function which($name)
{
    Get-Command $name | Select-Object -ExpandProperty Definition
}

これで、プロファイルをリロードすると、次のことができます。

PS C:\> which notepad
C:\Windows\system32\notepad.exe
于 2013-06-05T20:22:09.063 に答える
110

私は通常、次のように入力します。

gcm notepad

また

gcm note*

gcm は Get-Command のデフォルトのエイリアスです。

私のシステムでは、gcm note* の出力は次のとおりです。

[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

探しているものに一致するディレクトリとコマンドを取得します。

于 2008-09-15T15:22:32.760 に答える
43

この例を試してください:

(Get-Command notepad.exe).Path
于 2014-04-01T04:17:28.330 に答える
9

which 関数に対する私の提案:

function which($cmd) { get-command $cmd | % { $_.Path } }

PS C:\> which devcon

C:\local\code\bin\devcon.exe
于 2015-11-17T10:14:58.887 に答える
7

Unix との簡単な一致は次のとおりwhichです。

New-Alias which where.exe

ただし、存在する場合は複数の行を返すため、次のようになります

function which {where.exe command | select -first 1}
于 2017-04-08T19:06:36.310 に答える
3

これはあなたが望むことをしているようです(私は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
于 2008-09-15T15:16:09.563 に答える
2

whereWindows 2003以降(またはリソースキットをインストールしている場合はWindows 2000 / XP)でコマンドを試してください。

ところで、これは他の質問でより多くの答えを受け取りました:

Windowsに「which」に相当するものはありますか?

whichUnixコマンドと同等のPowerShell ?

于 2011-12-13T05:14:57.143 に答える
2

このPowerShell を確認してください。

そこに提供されているコードは、次のことを示唆しています。

($Env:Path).Split(";") | Get-ChildItem -filter notepad.exe
于 2008-09-15T15:16:27.173 に答える
0

使用する:

function Which([string] $cmd) {
  $path = (($Env:Path).Split(";") | Select -uniq | Where { $_.Length } | Where { Test-Path $_ } | Get-ChildItem -filter $cmd).FullName
  if ($path) { $path.ToString() }
}

# Check if Chocolatey is installed
if (Which('cinst.bat')) {
  Write-Host "yes"
} else {
  Write-Host "no"
}

または、このバージョンでは、元の where コマンドを呼び出します。

このバージョンも、bat ファイルに限定されないため、より適切に機能します。

function which([string] $cmd) {
  $where = iex $(Join-Path $env:SystemRoot "System32\where.exe $cmd 2>&1")
  $first = $($where -split '[\r\n]')
  if ($first.getType().BaseType.Name -eq 'Array') {
    $first = $first[0]
  }
  if (Test-Path $first) {
    $first
  }
}

# Check if Curl is installed
if (which('curl')) {
  echo 'yes'
} else {
  echo 'no'
}
于 2013-12-22T11:06:40.330 に答える