Comment demander à PowerShell où se trouve quelque chose?
Par exemple, "which notepad" et renvoie le répertoire à partir duquel notepad.exe est exécuté, en fonction des chemins actuels.
Le tout premier alias que j'ai créé une fois que j'ai commencé à personnaliser mon profil dans PowerShell était "qui".
New-Alias which get-command
Pour ajouter ceci à votre profil, tapez ceci:
"`nNew-Alias which get-command" | add-content $profile
Le `n au début de la dernière ligne est d’assurer que celle-ci commence par une nouvelle ligne.
Voici un équivalent * nix réel, c’est-à-dire qu’il donne une sortie de style * nix.
Get-Command <your command> | Select-Object -ExpandProperty Definition
Il suffit de remplacer par tout ce que vous recherchez.
PS C:\> Get-Command notepad.exe | Select-Object -ExpandProperty Definition
C:\Windows\system32\notepad.exe
Lorsque vous l'ajoutez à votre profil, vous souhaiterez utiliser une fonction plutôt qu'un alias, car vous ne pouvez pas utiliser d'alias avec des tubes:
function which($name)
{
Get-Command $name | Select-Object -ExpandProperty Definition
}
Maintenant, quand vous rechargez votre profil, vous pouvez faire ceci:
PS C:\> which notepad
C:\Windows\system32\notepad.exe
D'habitude je tape juste:
gcm notepad
ou
gcm note*
gcm est l'alias par défaut pour Get-Command.
Sur mon système, gcm note * génère:
[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
Vous obtenez le répertoire et la commande correspondant à ce que vous recherchez.
Essayez cet exemple:
(Get-Command notepad.exe).Path
Cela semble faire ce que vous voulez (je l’ai trouvé sur 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
Cochez cette PowerShell qui .
Le code fourni ici suggère ceci:
($Env:Path).Split(";") | Get-ChildItem -filter notepad.exe
Ma proposition pour la fonction Quelle:
function which($cmd) { get-command $cmd | % { $_.Path } }
PS C:\> which devcon
C:\local\code\bin\devcon.exe
Essayez la commande where
sur Windows 2003 ou version ultérieure (ou Windows 2000/XP si vous avez installé un kit de ressources).
BTW, cela a reçu plus de réponses dans d'autres questions:
Une correspondance rapide avec Unix which
est
New-Alias which where.exe
Mais il retourne plusieurs lignes si elles existent, alors il devient
$(where.exe command | select -first 1)
J'aime Get-Command | Format-List
, ou plus court, utiliser des alias pour les deux et uniquement pour powershell.exe
:
gcm powershell | fl
Vous pouvez trouver des alias comme ceci:
alias -definition Format-List
La complétion par tabulation fonctionne avec gcm
.
J'ai cette fonction avancée which
dans mon profil PowerShell:
function which {
<#
.SYNOPSIS
Identifies the source of a PowerShell command.
.DESCRIPTION
Identifies the source of a PowerShell command. External commands (Applications) are identified by the path to the executable
(which must be in the system PATH); cmdlets and functions are identified as such and the name of the module they are defined in
provided; aliases are expanded and the source of the alias definition is returned.
.INPUTS
No inputs; you cannot pipe data to this function.
.OUTPUTS
.PARAMETER Name
The name of the command to be identified.
.EXAMPLE
PS C:\Users\Smith\Documents> which Get-Command
Get-Command: Cmdlet in module Microsoft.PowerShell.Core
(Identifies type and source of command)
.EXAMPLE
PS C:\Users\Smith\Documents> which notepad
C:\WINDOWS\SYSTEM32\notepad.exe
(Indicates the full path of the executable)
#>
param(
[String]$name
)
$cmd = Get-Command $name
$redirect = $null
switch ($cmd.CommandType) {
"Alias" { "{0}: Alias for ({1})" -f $cmd.Name, (. { which cmd.Definition } ) }
"Application" { $cmd.Source }
"Cmdlet" { "{0}: {1} {2}" -f $cmd.Name, $cmd.CommandType, (. { if ($cmd.Source.Length) { "in module {0}" -f $cmd.Source} else { "from unspecified source" } } ) }
"Function" { "{0}: {1} {2}" -f $cmd.Name, $cmd.CommandType, (. { if ($cmd.Source.Length) { "in module {0}" -f $cmd.Source} else { "from unspecified source" } } ) }
"Workflow" { "{0}: {1} {2}" -f $cmd.Name, $cmd.CommandType, (. { if ($cmd.Source.Length) { "in module {0}" -f $cmd.Source} else { "from unspecified source" } } ) }
"ExternalScript" { $cmd.Source }
default { $cmd }
}
}
Utilisation:
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"
}
Ou cette version, en appelant la commande where originale.
Cette version fonctionne également mieux, car elle ne se limite pas aux fichiers 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'
}