Quote:
Originally Posted by Cesar82
Yes. Only rename Component= key to Task= key inside records.ini file.
|
Hi can you help me iwth how i can add extraction logic for diskspan here ? For a single disk it works okay but for multiple disk it doesn't work, it's this
https://fileforums.com/showthread.php?t=104745 script btw
Code:
if ISDoneInit(ExpandConstant('{tmp}\record.inf'), $F777, 0, 0, 0, MainForm.Handle, 512, @ProgressCallback) and FileSearchInit(True) then
begin
ExtractTemporaryFile('ENGLISH.INI');
ChangeLanguage('English');
repeat
if ISArcExtract(0, 0, ExpandConstant('{src}\data-1.bin, ExpandConstant('{app}'), '', False, '', ExpandConstant('{tmp}\Arc.ini'), ExpandConstant('{app}'), False) then
ISDoneError := False
else
Break;
until True;
ISDoneStop;
end;