View Full Version : Help- How to extract a .bin file compressed by a code ?
Please Help How to extract a .bin file compressed by a code ?
i have used :-
-msrep64+delta+lzma64:a1:mfbt4:d158m:fb273:mc1000:l c8
please give me any installer or some way by which .bin file extracted by this can be extracted :(
please help
pakrat2k2
12-10-2014, 22:00
you can use any of the CIU versions ( 8569...1006 ) but in the setup folder ( where your images are, you have an autorun folder, background folder, setup folder) but in the root of the main Setup folder, you must include arc.ini so that inno knows how to unpack it. Like image below....
you can use any of the CIU versions ( 8569...1006 ) but in the setup folder ( where your images are, you have an autorun folder, background folder, setup folder) but in the root of the main Setup folder, you must include arc.ini so that inno knows how to unpack it. Like image below....
like i have only one .bin file so i have to give new installer including arc.ini ?
could you p;ease tell from where i will got arc.ini or cud something ?
please if possible this time you give me all possible things to extract that .bin files in all windows system (everyone abusing me) :(
Carldric Clement
12-10-2014, 23:15
you can use any of the CIU versions ( 8569...1006 ) but in the setup folder ( where your images are, you have an autorun folder, background folder, setup folder) but in the root of the main Setup folder, you must include arc.ini so that inno knows how to unpack it. Like image below....
CIU Version can't easy find it!
:o:(
Dante1995
13-10-2014, 01:29
Adonix
what program did you use to compress?
Carldric Clement
what program did you use to compress?
Dante1995 how to use your given ciu ? :( could you dive me any made installer by which we can extract .bin file obtained from below image.
http://i.imgur.com/xdanure.jpg
Carldric Clement
13-10-2014, 04:24
what program did you use to compress?
Thanks Dante1995! But how to edit the autorun image & installer background?
:rolleyes::cool:
Dante1995
13-10-2014, 06:57
like i have only one .bin file so i have to give new installer including arc.ini ?
could you p;ease tell from where i will got arc.ini or cud something ?
please if possible this time you give me all possible things to extract that .bin files in all windows system (everyone abusing me) :(
1) rename file data1.bin
2) double click decompress.bat
Carl
use altef_4 program PngToBmp
Carldric Clement
13-10-2014, 16:39
1) rename file data1.bin
2) double click decompress.bat
use altef_4 program PngToBmp
Not program! i mean i want to make a autorun image like png it!!
:rolleyes::cool:
Carldric Clement
13-10-2014, 17:05
CIU 1.0.0.6.rar (12.33 MB, 28 views)
Dante1995
That you giving me doesn't support freearc method! why?
Razor12911
18-10-2014, 16:47
don't use srep64 and lzma64 with CI or CIU because it wasn't configured to extract such method. use normal srep and lzma.
Carldric Clement
18-10-2014, 17:08
don't use srep64 and lzma64 with CI or CIU because it wasn't configured to extract such method. use normal srep and lzma.
Use for normal? But i like about a method like this:
-msrep+delta+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
It wont work!
Razor12911
18-10-2014, 17:51
may I ask why?
Dante1995
18-10-2014, 18:18
Use for normal? But i like about a method like this:
-msrep+delta+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
It wont work!
try adding these 2 files and change arc.ini, but I do not know if it works :confused:
arc.ini
[External compressor:precomp]
header = 0
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
[External compressor:srep]
header = 0
unpackcmd = srep {options} -d -s - - <stdin> <stdout>
[External compressor:srep64]
header = 0
unpackcmd = srep64 {options} -d -s - - <stdin> <stdout>
[External compressor:lzma64]
header = 0
unpackcmd = lzma64 d lzma{:option} <stdin> <stdout>
in [Files]
Source: Include\srep64.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\lzma64.exe; DestDir: {tmp}; Flags: dontcopy
in function InitializeSetup(): Boolean;
ExtractTemporaryFile('lzma64.exe');
ExtractTemporaryFile('srep64.exe');
Carldric Clement
18-10-2014, 18:19
may I ask why?
Hi Razor12911! CIU Version was doesn't support method for freearc! can you help how to fix it?
:o:(
Carldric Clement
18-10-2014, 18:36
try adding these 2 files and change arc.ini, but I do not know if it works :confused:
arc.ini
[External compressor:precomp]
header = 0
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
[External compressor:srep]
header = 0
unpackcmd = srep {options} -d -s - - <stdin> <stdout>
[External compressor:srep64]
header = 0
unpackcmd = srep64 {options} -d -s - - <stdin> <stdout>
[External compressor:lzma64]
header = 0
unpackcmd = lzma64 d lzma{:option} <stdin> <stdout>
in [Files]
Source: Include\srep64.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\lzma64.exe; DestDir: {tmp}; Flags: dontcopy
in function InitializeSetup(): Boolean;
ExtractTemporaryFile('lzma64.exe');
ExtractTemporaryFile('srep64.exe');
Fix My Self:
arc.ini
[External compressor:precomp]
header = 0
packcmd = precomp -intense0 -c- {options} -o$$arcpackedfile$$.tmp $$arcdatafile$$.tmp
unpackcmd = precomp -o$$arcdatafile$$.tmp -r $$arcpackedfile$$.tmp
[External compressor:srep]
header = 0
packcmd = srep {options} -m3f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep -d -s $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor:srep64]
header = 0
packcmd = srep64 {options} -m3f $$arcdatafile$$.tmp $$arcpackedfile$$.tmp
unpackcmd = srep64 -d -s $$arcpackedfile$$.tmp $$arcdatafile$$.tmp
[External compressor:lzma64]
header = 0
packcmd = FreeArc-LZMA-x64 e lzma{:option} <stdin> <stdout>
unpackcmd = FreeArc-LZMA-x64 d lzma{:option} <stdin> <stdout>
Fix From Scripts File:
Source: Include\7z.dll; DestDir: {tmp}; Flags: dontcopy
Source: include\arc.ini; DestDir: {tmp}; Flags: dontcopy
Source: Include\CLS-MSC.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\CLS-precomp.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\CLS-srep.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\english.ini; DestDir: {tmp}; Flags: dontcopy
Source: Include\facompress.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\facompress_mt.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\FreeArc-LZMA-x64.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\packjpg_dll.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\packjpg_dll1.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\packZIP.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp038.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp040.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp041.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp042.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\precomp043.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\records.inf; DestDir: {tmp}; Flags: dontcopy
Source: Include\russian.ini; DestDir: {tmp}; Flags: dontcopy
Source: Include\srep.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\srep64.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\Unarc.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\Unrar.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\xdelta3.dll; DestDir: {tmp}; Flags: dontcopy
Source: Include\zlib1.dll; DestDir: {tmp}; Flags: dontcopy
And Last Is:
ExtractTemporaryFile('7z.dll');
ExtractTemporaryFile('arc.ini');
ExtractTemporaryFile('CLS-MSC.dll');
ExtractTemporaryFile('CLS-precomp.dll');
ExtractTemporaryFile('CLS-srep.dll');
ExtractTemporaryFile('english.ini');
ExtractTemporaryFile('facompress.dll');
ExtractTemporaryFile('facompress_mt.dll');
ExtractTemporaryFile('FreeArc-LZMA-x64.exe');
ExtractTemporaryFile('packjpg_dll.dll');
ExtractTemporaryFile('packjpg_dll1.dll');
ExtractTemporaryFile('packZIP.exe');
ExtractTemporaryFile('precomp.exe');
ExtractTemporaryFile('precomp038.exe');
ExtractTemporaryFile('precomp040.exe');
ExtractTemporaryFile('precomp041.exe');
ExtractTemporaryFile('precomp042.exe');
ExtractTemporaryFile('precomp043.exe');
ExtractTemporaryFile('russian.ini');
ExtractTemporaryFile('srep.exe');
ExtractTemporaryFile('srep64.exe');
ExtractTemporaryFile('unarc.dll');
ExtractTemporaryFile('unrar.dll');
ExtractTemporaryFile('xdelta3.dll');
ExtractTemporaryFile('zlib1.dll');
ExtractTemporaryFile('records.inf');
Done FIX!
:D:rolleyes::cool:
Dante1995
18-10-2014, 19:10
NO OK!! TEST
recommended Razor compressor v1.2.0
example script:
((no SETUP.CAB add))
1)
Source: Include\srep64.exe; DestDir: {tmp}; Flags: dontcopy
Source: Include\lzma64.exe; DestDir: {tmp}; Flags: dontcopy
2)
if Uppercase(GetIniString('InstallOptions', 'PrecompVer64', '0', ExpandConstant('{tmp}\Setup.ini'))) = 'INSIDE' then begin
ExtractTemporaryFile('CLS-precomp.dll');
ExtractTemporaryFile('packjpg_dll.dll');
ExtractTemporaryFile('packjpg_dll1.dll');
ExtractTemporaryFile('precomp.exe');
ExtractTemporaryFile('zlib1.dll');
ExtractTemporaryFile('srep64.exe');
ExtractTemporaryFile('lzma64.exe');
end;
3)SETUP.INI
PrecompVer=0.38
PrecompVer64=INSIDE
good job
Razor12911
19-10-2014, 14:29
Nice one Dante, I don't like people going round in circles and end up complicating things. Srep64 and Srep is just the same thing, also LZMA. Only difference is quick (de)compression, oh and... Same Compression Ratio. And disadvantage, decompression in 32-bit may not be possible. Just stick with what has been there already, especially you Carl Johnson, lol.
Dante1995
19-10-2014, 14:48
you know razor, but so they understand better, I explained how the 100 times help to many but then I always ask the same things, it seems a crime to study :)
Carldric Clement
19-10-2014, 15:20
Nice one Dante, I don't like people going round in circles and end up complicating things. Srep64 and Srep is just the same thing, also LZMA. Only difference is quick (de)compression, oh and... Same Compression Ratio. And disadvantage, decompression in 32-bit may not be possible. Just stick with what has been there already, especially you Carl Johnson, lol.
I'm not C.J(Carl Johnson) from GTA San Andreas! Did i have a brother like Sweet ,Smoke or Ryder? huh?
:mad:
Dante1995
19-10-2014, 16:01
razor has made a mess, did not understand that he spoke to (adapt) srep64BIT to CIU Carl, however, try to read the guide SREP, I see you're good at work you're not in the grass, I apologize for razor Carl, perhaps too studied the boy :rolleyes:
Carldric Clement
19-10-2014, 16:05
razor has made a mess, did not understand that he spoke to (adapt) srep64BIT to CIU Carl, however, try to read the guide SREP, I see you're good at work you're not in the grass, I apologize for razor Carl, perhaps too studied the boy :rolleyes:
Thanks Dante1995! For giving your say!
I see from Razor12911 they call me
Carl Johnson! I'm Not CJ!
I will remove that i say the swear words it!
:rolleyes::cool::D
Razor12911
22-03-2015, 15:02
why no everyone tell me how to unpack this?? why?
http://www.fileforums.com/showpost.php?p=435114&postcount=14
http://www.fileforums.com/showpost.php?p=435117&postcount=17
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.