* コマンドや関数の概要を取得する 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

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS