愚かな質問で申し訳ありませんが、正しくcmdコマンドをバッチコマンドに30分変換してみてください。私は、変数へのパスをレンダリングしたい、バッチファイルでcmdのコマンドをバッチスクリプトのコマンドに変換する方法
"C:\Program Files (x86)\SmartBear\TestComplete 12\Bin\TestComplete.exe" "C:\Users\Administrator\Documents\TestComplete 12 Projects\TestProject1\TestProject1.pjs" /r p:TestProject1 /e
:私はcmdのworklyコマンドを持っています。例について:
'/r' is not recognized as an internal or external command, operable program or batch file.
私が使用:
call "C:\Program Files (x86)\SmartBear\TestComplete 12\Bin\TestComplete.exe" "C:\Users\Administrator\Documents\TestComplete 12 Projects\TestProject1\TestProject1.pjs" /r p:TestProject1 /e
すべての作業
私は私のバッチを実行してみてくださいset testCompleteDirectiore_volBat = C:\Program Files (x86)\SmartBear\TestComplete 12\Bin\TestComplete.exe
set testCompleteProjectDirectory_volBat = C:\Users\Administrator\Documents\TestComplete 12 Projects\TestProject1\TestProject1.pjs
set nameProject_volBat = TestProject
call %testCompleteDirectiore_volBat% %testCompleteProjectDirectory_volBat% /r p:%nameProject_volBat% /e
は、私は例外を取得します。どこで私の間違い?
ありがとう、本当の発言です! –