5

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

nameFile.exe -inf fileDriver.inf install

在 Inno 设置中,我有以下内容:

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文件?

4

1 回答 1

4

查看您的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;
于 2013-01-26T23:31:14.777 回答