View Single Post
  #632  
Old 08-08-2012, 15:09
lupetto77's Avatar
lupetto77 lupetto77 is offline
Registered User
 
Join Date: Nov 2008
Location: Italia
Posts: 87
Thanks: 1
Thanked 2 Times in 2 Posts
lupetto77 is on a distinguished road
Since I'm a beginner with these command lines I wanted to ask you a few things:

1.quale between these compresses more
Code:
-mprecomp:zl68:d1+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
-mprecomp:zl68:d0+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
-mprecomp:zl11,68:d1+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
-mprecomp:zl98:d1+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8
2.With this code how do I compress multiple folders?
I have a folder such as Mass Effect 3 and inside there are 3 more folders 1 - 2 - 3 as I pack them in single file Data2.bin

code:

Code:
echo off
cls
set choice1=
echo.
set /p choice1=Please type game folder path (e.g. c:\program files (x86)\BioWare\Mass Effect 3):
echo.
echo Creating archive files, please wait...
arc a -ep1 -r -w.\ .\Disk1\Data1.bin -mprecomp:zl68:d1+srep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "%choice1%\Binaries\*"
if ERRORLEVEL 1 goto arcfail
echo.All done.
pause
goto EOF
:arcfail
echo.
echo.WARNING: FreeArc returns an error, please retry... 
pause
:EOF