Как запустить файл перед установкой с помощью Inno Setup - PullRequest
19 голосов
/ 16 августа 2010

Можно ли запустить файл с помощью Inno Setup до начала установки? Документация

1 Ответ

23 голосов
/ 16 августа 2010

Да, это так.В разделе [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;
...