私は現在、ビジュアルスタジオであらかじめ構築されたアプリケーションを使用しようとしています。私の命令としてあらかじめ組み込まれているSET環境変数が機能しません
、私は多くのthatsを持っているコマンドの同じ部分を使用して、のは言わせて:
powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe "variable1" "variable2"
powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe "variable1" "variable2"
powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe "variable1" "variable2"
powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe "variable2" "variable4"
powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe "variable3" "variable5"
私は、変更されないものを取る先頭に変数を設定したい:powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe
私は現在、このやっている:
SET VAR = powershell.exe -ExecutionPolicy unrestricted C:folder1\bin\something.exe
and trying to call it this way :
VAR "variable1" "variable2"
VAR "variable1" "variable2"
VAR "variable1" "variable2"
VAR "variable2" "variable4"
VAR "variable3" "variable5"
しかし、これは、なぜ、どのヘッドを動作しませんか?私は問題を発見
これはC#と何が関係していますか? – Amy