307cwam
1) Инсталляция:
MyInstaller2.exe /S
В инсталляторе прописать:
[SETUP]
UninstallFilesDir={app}\{#MyFolder2}
2) Деинсталляция программы 1:
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
var
ErrorCode: Integer;
begin
case CurUninstallStep of
usUninstall: //Uninstall is about to start
begin
ShellExec('',ExpandConstant'{app}\{#MyFolder2}\unins000.exe /S'),'', '', SW_SHOW, ewNoWait, ErrorCode);
end;
end;
end;
1) Инсталляция:
MyInstaller2.exe /S
В инсталляторе прописать:
[SETUP]
UninstallFilesDir={app}\{#MyFolder2}
2) Деинсталляция программы 1:
procedure CurUninstallStepChanged(CurUninstallStep: TUninstallStep);
var
ErrorCode: Integer;
begin
case CurUninstallStep of
usUninstall: //Uninstall is about to start
begin
ShellExec('',ExpandConstant'{app}\{#MyFolder2}\unins000.exe /S'),'', '', SW_SHOW, ewNoWait, ErrorCode);
end;
end;
end;