コマンドや関数の概要を取得する Get-Command

実行可能か調べる(パスが通っているか調べる)

 if ((Get-Command "no-such-app.exe" -ErrorAction SilentlyContinue) -eq $Null) {
   echo "The app is not found"
 }

参考

http://ss64.com/ps/get-command.html


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS