View Single Post
  #56  
Old 03-12-2013, 06:32
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by tweak View Post
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.
Reply With Quote