Quote:
Originally Posted by Da_G
Hi, here's a quick batch file I made, to help with recmodding, since you guys do alot i figured id post it here
Code:
cd %~f1
for /F "tokens=*" %%G in ('dir /A:D /B') do ..\..\..\..\..\tools\recmod.exe %%G
for /F "tokens=*" %%G in ('dir /A:D /B') do ren %%G %%G1
for /F "tokens=*" %%G in ('dir /A:D /B') do move "%%G"\*.dll .
for /F "tokens=*" %%G in ('dir /A:D /B') do move "%%G"\*.exe .
for /F "tokens=*" %%G in ('dir /A:D /B') do move "%%G"\*.acm .
for /F "tokens=*" %%G in ('dir /A:D /B') do move "%%G"\*.mui .
for /F "tokens=*" %%G in ('dir /A:D /B') do rmdir /s /q %%G
change ..\..\..\..\..\tools\recmod.exe to the exact path or relative path to your recmod.exe (i recommend using the ~17kbish nuerecmod) and save it as recmod-package.bat or whatever...
in windows explorer just drag-n-drop the package (i.e. browsingie) on top of the .bat and bam, all the modules are now files
![Smile](http://forum.ppcgeeks.com/images/smilies/icon_smile.gif)
|
Very nice, thank you sir!