Quote:
Originally Posted by prince8889
Please , , ,
How Can I Specified AppSize Exactly Size . . . Not 1 , 2 , 3 , 4 or 5 Giga
I need it For example 4.65 gb
|
Quote:
Originally Posted by exorc
How to decompress two archives?
Example, setup-1.bin and setup-2.bin?
Sorry for my english...
|
Quote:
Originally Posted by drexx
Hi all.., how can i remove Music and splash screen?
|
For the app size specification, well i was not able to get that ok, but using this small tool here helped me to get over with that and just have to give the app size from gb to mb and you will be clean.
And also for the removal of the splash and voice, you can just completely depend on the tool, and for extracting more than 1 archive you just have to edit the archives.ini file
The tool :
http://fileforums.com/showthread.php?t=95595
add these onto you're archives.ini file and it will help with adding more archives.
Code:
if not ShowChangeDiskWindow ('Please Insert Disk 2 To Continue...', ExpandConstant('{src}'),'Setup-2.bin') then break;
if not ISArcExtract ( 0, 40, ExpandConstant('{src}\Setup-2.bin'), ExpandConstant('{app}'), '', false, '', ExpandConstant('{tmp}\arc.ini'), ExpandConstant('{app}'), False) then break;
There you go for two files.
And well most of the times that gave me an isdone.dll error at the end of the extraction, but i presume modifying these lines and adding them according to the archives in the list can help to solve it.
Code:
if not IS7ZipExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break;
if not ISRarExtract ( 0, 100, ExpandConstant('{src}\Setup-1.bin'), ExpandConstant('{app}'), false, '') then break;
Add in these lines accordingly and that might help you with that.