web-dev-qa-db-ja.com

InnoSetupでセットアップする前にファイルを実行する方法

セットアップが始まる前に、Inno Setupでファイルを実行することは可能ですか? ドキュメント

19

はい、そうです。 _[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;
_
24
Jan Derk