我正在尝试以静默模式运行 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;