调用cmd.exe并在命令/ exe内写入而不执行指令

时间:2016-09-05 07:59:25

标签: batch-file cmd

我必须选择解决我的问题:

  1. 打开一个带有内部路径(myroute\iwanttocall.exe)的cmd而不执行,这样用户就可以传递.exe 2参数,例如:iwanttocall.exe argument1 argument2

  2. 在myroute位置打开一个干净的cmd,以便用户可以调用iwanttocall.exe和2个参数。

  3. 我该怎么做?

    我尝试使用start cmd.exe /C/K "iwanttocall.exe",但这只会执行命令。

1 个答案:

答案 0 :(得分:2)

您可以使用SET /P提示用户输入。

SET /P myArgs=Enter your parameters:
myroute\iwanttocall.exe %myArgs%