* コマンドや関数の概要を取得する Get-Command [#gb2a22f3]
** 指定したパラメータを持つコマンドレットを調べる [#d7d1943b]
PS tmp> Get-Command -ParameterName recurse
CommandType Name Version Source
----------- ---- ------- ------
Cmdlet Copy-Item 3.1.0.0 Microsoft.PowerShell.Managemen
Cmdlet Get-ChildItem 3.1.0.0 Microsoft.PowerShell.Managemen
(略)
** 実行可能か調べる(パスが通っているか調べる) [#na631295]
if ((Get-Command "no-such-app.exe" -ErrorAction SilentlyContinue) -eq $Null) {
echo "The app is not found"
}
** 参考 [#x5153bb8]
http://ss64.com/ps/get-command.html