When you have multiple files it's better to write a simple loop in a little batch file.
For decompress:
Code: Select all
for %%f in ("C:\UT2004\01_UCC\*.uz2") ; do .\ucc decompress "%%f"
For compress:
Code: Select all
for %%f in ("C:\UT2004\01_UCC\*.*") ; do .\ucc compress "%%f"
pause
Procedure:
- Create a new folder and put every .uz2 file inside which you want to decompress. Here it's "C:\UT2004\01_UCC"
- Create a .txt file (one for decompress and one for compress if needed) and write the code into it.
- Rename it in a .bat file (like 01_UCC_decompress.bat) and put it into your System folder form UT.
- Just open it.
- UCC will make a de/compressed copie from each file. Sort your folder by Tags and pass the files in the right UT-folder.