- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- PowerShell/環境情報/コマンドや関数の概要を取得する Get-Command へ行く。
- 1 (2016-04-11 (月) 10:50:23)
- 2 (2016-04-11 (月) 11:05:27)
コマンドや関数の概要を取得する Get-Command
実行可能か調べる(パスが通っているか調べる)
if (!(Get-Command "no-such-app.exe" -ErrorAction SilentlyContinue)) { echo "The app is not found" }