nik1967, единственное что я убрал lc5:
lp4:b4 потому что после srep батник закрывался и еще lc5 изменил на lc8
Вот видео
http://sendfile.su/1305084
http://rgho.st/private/6f5dw9pnw/db5850879b8ed7d504e7568eec476c34
lzmax64.ini
[External compressor:srep]
;options = l%d (minimal match length, default=512)
header = 0
packcmd = srep {options} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor:lzma]
header = 0
packcmd = fazip -i0 compress:{compressor}{:option} $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = fazip -i0 decompress:{compressor}{:option} $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor
zlib]
header = 0
packcmd = pZLib e -m2 -t4 - -o - <stdin> <stdout>
unpackcmd = pZLib d -t4 - -o - <stdin> <stdout>
Pipocooling,
var
i:integer;
procedure CancelButtonOnClick(Sender: TObject);
begin
SuspendProc;
if MsgBox(SetupMessage(msgExitSetupMessage), mbConfirmation, MB_YESNO) = IDYES then ISDoneCancel:=1;
#ifdef pZLibInside
Exec(ExpandConstant('{sys}\taskkill.exe'), ' /F /IM pZLib.exe', '', SW_HIDE, ewWaitUntilTerminated, i);
#endif
ResumeProc;
end;