如何在使用Inno Setup进行安装之前运行文件

时间:2010-08-16 13:11:07

标签: installer installation inno-setup

在设置开始之前,是否可以使用Inno Setup运行文件? Documentation

1 个答案:

答案 0 :(得分:23)

是的。在[code]部分中,在InitializeSetup()函数中运行该文件。此示例在安装程序运行之前启动记事本。

function InitializeSetup(): boolean;
var
  ResultCode: integer;
begin

  // Launch Notepad and wait for it to terminate
  if Exec(ExpandConstant('{win}\notepad.exe'), '', '', SW_SHOW,
     ewWaitUntilTerminated, ResultCode) then
  begin
    // handle success if necessary; ResultCode contains the exit code
  end
  else begin
    // handle failure if necessary; ResultCode contains the error code
  end;

  // Proceed Setup
  Result := True;

end;