Risposte:
Il comando where fa quello che vuoi e risale almeno al kit di risorse per Windows 98 ed è incluso per impostazione predefinita in Server 2003, Vista e versioni successive:
C:\>where csc
C:\Windows\Microsoft.NET\Framework\v3.5\csc.exe
C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe
Se eseguito senza argomenti (su Vista), risulta in uno dei miei messaggi preferiti:
C:\>where
ERROR: The operation completed successfully.
Se si esegue in PowerShell, assicurarsi di includere '.exe' per distinguere da qualsiasi alias o script 'where' lungo il percorso. ('dove' è un tipico alias per Where-Object.ps1)
C:\> where.exe where.exe
C:\Windows\System32\where.exe
where
po ' triste restituisce solo aiuto per l'uso ora in Windows 7.
where
non disponibile in 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)
)
Per favore, usa dove comando:
> where app.exe
È il modo migliore per raggiungere il tuo obiettivo.
Puoi anche usare il comando PowerShell:
> $env:path.Split(';') | gci -Filter app.exe
e la versione estesa si presenta così:
> $env:path.Split(';') | select -Unique | ? {$_ -and (test-path $_)} | gci -Filter app.exe
Da qualche parte "là fuori" ho trovato questo file batch whereis.bat
:
@for %%e in (%PATHEXT%) do @for %%i in (%1%%e) do @if NOT "%%~$PATH:i"=="" echo %%~$PATH:i
Aggiornamento: forse l'ho trovato qui .
Esiste almeno una porta di Windows per l' which
utilità.
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;
}
Esempio:
PS> trova 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
Lo stavo cercando oggi e poiché sono su XP senza il kit di risorse, mi sono rivolto a PowerShell con il seguente comando:
dir -path c:\ -filter ffmpeg.* -r
where
quale ricerca solo nel %PATH%
. Inoltre è molto più lento e dà errori per le cartelle che non hai il permesso di lettura
Puoi provare a cercare il comando usando quanto segue:
dir /s type-whatever-you-are-searching