18
在安裝程序開始之前,是否可以使用Inno Setup運行文件? Documentation如何在使用Inno Setup進行設置之前運行文件
在安裝程序開始之前,是否可以使用Inno Setup運行文件? Documentation如何在使用Inno Setup進行設置之前運行文件
是的。在[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;
這就是我需要的!謝謝。 – 2010-08-16 13:42:17
如果它改變用戶計算機上的任何內容,則不應在InitializeSetup中完成。這應該在用戶按下「安裝」後完成,即PrepareToInstall()或CurStepChanged(ssInstall)。 – Deanna 2011-07-25 15:44:13