0

我正在尝试以静默模式运行 exe,但我不知道如何使用命令行选项来执行此操作。下面我附上了我的脚本。

var progress:TOutputProgressWizardPage;

procedure DownloadFinished(downloadPage:TWizardPage);
var ErrorCode:integer;
begin
 if ShellExec('open', NewInstallerPath, '',
   ExtractFilePath(NewInstallerPath), SW_SHOW, ewNoWait, ErrorCode) then
   ExitProcess(1);
end;
4

1 回答 1

1

参数(如/verysilent)转到ShellExec函数的第三个参数:

if ShellExec('open', NewInstallerPath, '/verysilent',
     ExtractFilePath(NewInstallerPath), SW_SHOW, ewNoWait, ErrorCode) then
于 2016-08-12T14:59:57.747 回答