Quote:
Originally Posted by supernoro
|
in setup.ini
MoveDirectoryInfo=0
MoveProgressBar=4
change those values.
Quote:
Originally Posted by supernoro
How to enable internal installation in CIU1014 
|
- settings.iss make sure its just #define internal ( NO ; at front of line )
- installerscript.iss make sure there IS a ; in front of line #2
- in style.ini below below [install options] make a section
Code:
[ExtractSettings]
FreeArcFile1=Data1.cab;DestDir:{app};Disk:1;
FreeArcFile2=Data2.cab;DestDir:{app};Disk:1;
the numbers are what are important if you have 5 cab files then there must be 5 lines, and the numbers/names for the cab files match.
IE you named your first file xyz.abc then the first line in that section would be
FreeArcFile1=xyz.abc;DestDir:{app};Disk:1;
it doesn't have to end in cab, bin, arc, you can name it however you want.
Take a look at any of the conversions that use compress.bat & you see how its layed out.
Just don't try to do this IF your using the CIU1014 from the UltraARC topic as it has been modified to use UltraARC & the extract section no longer applies.
If your using the version from yener90's Inno Project Source Codes topic then what I've written above DOES apply.