gpt4 book ai didi

parameters - 如何使用参数在 Inno Setup 中运行 .exe 文件

转载 作者:行者123 更新时间:2023-12-04 20:13:45 30 4
gpt4 key购买 nike

请,我尝试运行一个 .exe 文件,该文件在 cmd 控制台中以下列方式运行:

nameFile.exe -inf fileDriver.inf install

在 Inno Setup 中,我有以下内容:

var
command: Srtring;

Begin

command := 'nameFile.exe -inf fileDriver.inf install';
command := AddQuotes(command);
Exec(command, '', 'C:\pathOfFileName', SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
S:= SysErrorMessage(ResultCode);
MsgBox(S, mbInformation, MB_OK);
end;

提示参数无效,如何运行带参数的exe文件?

最佳答案

看着你的 Exec 调用时,需要将命令参数传递给函数调用的第二个参数。尝试使用这样的东西:

...
Exec('nameFile.exe', '-inf fileDriver.inf install', 'C:\pathOfFileName',
SW_SHOWNORMAL, ewWaitUntilTerminated, ResultCode);
...

Exec 函数声明为:
function Exec(const Filename, Params, WorkingDir: String; 
const ShowCmd: Integer; const Wait: TExecWait;
var ResultCode: Integer): Boolean;

关于parameters - 如何使用参数在 Inno Setup 中运行 .exe 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14542615/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com