View Single Post
  #2  
Old 17-09-2021, 03:37
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
It is necessary to include XDelta3.dll in your installer.
You can create the code by copying parts of the code included in the DiskSpan GUI 2.0.0.2 example script.
ISxDeltaExtract only works if you create the patch using XDelta with the parameters:
Code:
MakePatch.bat

@echo off
set "OldFile=File_Old.txt"
set "NewFile=File_New.txt"
echo.
xdelta3.exe -e -9 -S djw -vfs "%OldFile%" "%NewFile%" "%OldFile%.diff"
echo.
echo.Press any key to exit.
pause >nul
Reply With Quote
The Following User Says Thank You to Cesar82 For This Useful Post:
maybeknow (17-09-2021)