Quote:
Originally Posted by tweak
Hey guys.I'm new to this and I'm learning so much already,I want to know about compress.bat files.I downloaded some game archives here and some compress.bat files compress files and some doesn't compress files to speed up the process.now I want to know how to edit them individually from no compression to highest compression.the attributes etc.thank you
|
compress.bat
NO Compression ( -m0 )
Code:
:Data2
set arc=Data2.cab
if exist .\Data1\%arc% goto end
arc a -ep1 -r -w.\ -m0 [email protected] -dp"%choice1%" .\Data1\%arc%
better compression
Code:
:Data1
set arc=Data1.cab
if exist .\Data1\%arc% goto Data2
arc a -ep1 -r -w.\ -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 [email protected] -dp"%choice1%" .\Data1\%arc%
[email protected] means that only files listed in the Data1.lst will be compressed
[email protected] means that files in this list will NOT be included in archive.
All info has been posted before in Conversion Tutorials subforum, read each of the topics in that sub-forum too.