MakeSFX Example
Top 


The following example shows how to create self-extracting (SFX) archive:

with Archiver do
begin
FileName := 'C:\TEST\test.zip';


// Specify executable stub file from the installation folder
SFXStub :=
'C:\PROGRAM FILES\ComponentAce\ZIPFORGE\SFXStub\SFXstub.exe';

// Create SFX archive
MakeSFX('C:\TEST\SFXArchive.exe');
end;