我必须选择解决我的问题:
打开一个带有内部路径(myroute\iwanttocall.exe
)的cmd而不执行,这样用户就可以传递.exe 2参数,例如:iwanttocall.exe argument1 argument2
在myroute位置打开一个干净的cmd,以便用户可以调用iwanttocall.exe
和2个参数。
我该怎么做?
我尝试使用start cmd.exe /C
和/K "iwanttocall.exe"
,但这只会执行命令。
答案 0 :(得分:2)
您可以使用SET /P
提示用户输入。
SET /P myArgs=Enter your parameters:
myroute\iwanttocall.exe %myArgs%