답변:
곳의 명령은 당신이 원하는 것을 및 Windows 98 리소스 키트에 적어도 돌아갑니다, 및 Server 2003에 기본적으로 포함되어, Vista 및 새로운 :
C:\>where csc
C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe
Vista에서 인수없이 실행하면 내가 좋아하는 메시지 중 하나가 나타납니다.
C:\>where
ERROR: The operation completed successfully.
PowerShell에서 실행하는 경우 경로를 따라 'where'별칭 또는 스크립트와 구별되도록 '.exe'를 포함해야합니다. 'where'는 Where-Object.ps1의 일반적인 별칭입니다.
C:\> where.exe where.exe
C:\Windows\System32\where.exe
where
일이 이제 Windows 7에서 사용 도움말을 반환합니다. p
where
XP에서는 사용할 수 없음
hackerish which.cmd :
@echo off
@set PATH=.;%PATH%
@rem
@rem about: something similar like the unix-alike-which, but with
@rem within pure cmd
@rem
if "%1" == "" (
@echo Usage:
@echo.
@echo which 'cmd'
@echo.
@echo.if 'cmd' is not found, ERRORLEVEL is set to 1
@echo.
) else (
( @for %%f in (%1 %1.exe %1.cmd %1.bat %1.pif) do if not "%%~$PATH:f" == "" ( @echo %%~$PATH:f ) else @set ERRORLEVEL=1)
)
이 유틸리티 에는 최소한 Windows 포트 가 which
있습니다.
function find ($string) {
Get-ChildItem -Path 'c:\' -Recurse -Filter $string;
}
function whereis ($string) {
$superpath = "$env:Path;C:\Program Files;C:\Program Files (x86)";
(echo $superpath).Split(';') | Get-ChildItem -Recurse -Filter $string;
}
예:
PS> Mozilla.admx 찾기
Directory: C:\Windows\PolicyDefinitions
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 1/27/2016 12:22 PM 37146 Mozilla.admx
PS> whereis firefox.exe
Directory: C:\Program Files\Mozilla Firefox
Mode LastWriteTime Length Name
---- ------------- ------ ----
-a---- 9/21/2017 5:30 PM 477136 firefox.exe