Thread: DiskSpan GUI
View Single Post
  #8  
Old 28-06-2025, 18:28
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by Dunnowho69 View Post
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;
You can use one of the installers compatible with DiskSpan GUI, or you can adapt your own script by including the DiskSpan GUI module (See the IsDone example script adapted with the DiskSpan GUI module in the examples folder next to DiskSpan GUI).
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
Dunnowho69 (28-06-2025)