10
11

More than 5 years have passed since last update.

.exeや.dllがPATH環境変数の中のどのフォルダにあるか探す方法

Posted at

PATHが通ってはいるが、.exeや.dllが具体的にどのパスにあるか探す方法。
PowerShellを使う。

.exeの場合

PS C:\> Get-Command notepad.exe | % { $_.Definition }
C:\Windows\system32\notepad.exe

.dllの場合

PS C:\> $Env:PATH.Split(";") | ? { Test-Path "$_\kernel32.dll" }
C:\Windows\system32
10
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
11