How to extract multiple files in one shot?
Download the find.exe tool from here:
http://gnuwin32.sourceforge.net/downlin ... in-zip.php
and use it as in the following example:
c:
cd "\program files\Race - The WTCC Game\gamedata"
find -exec c:\wtcced.exe "{}" "c:\decrypt\{}" ;
or
find -iname "*.dds" -exec c:\wtcced.exe "{}" "c:\decrypt\{}" ;
the first step allows us to enter in the WTCC gamedata folder
then we find all the files and execute c:\wtcced.exe
or we do it only for the dds files
note that on linux you must use \; instead of ; at the end of the find command