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 "%~dp0"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
|
If you change ..\..\..\..\..\tools\recmod.exe to
"%~dp0"recmod.exe (i'm using windows 7) then you only have to change the batch file once and execute it from any directory and not worry about relative or absolute path.
Thanks Da_G you saved me about an hour each new rom release.