Awalder
Новичок
Доброго времени суток! Возник вопрос, возможно ли производить незаметный запуск SFX созданного в 7-Zip? Секция RUN не подходит. Ниже кусок моего кода, устанавливает автоматически, но как "спрятать" окно 7Zip ?
procedure CurStepChanged(CurStep: TSetupStep);
var ErrorCode : Integer;
begin
if CurStep = ssPostInstall then begin
ShellExec('', ExpandConstant('{app}\RUS.exe'), '-e -aoa -y', '', SW_SHOW, ewWaitUntilTerminated, ErrorCode);
DeleteFile(ExpandConstant('{app}\RUS.exe'));
end;
procedure CurStepChanged(CurStep: TSetupStep);
var ErrorCode : Integer;
begin
if CurStep = ssPostInstall then begin
ShellExec('', ExpandConstant('{app}\RUS.exe'), '-e -aoa -y', '', SW_SHOW, ewWaitUntilTerminated, ErrorCode);
DeleteFile(ExpandConstant('{app}\RUS.exe'));
end;