PS3 How to copy several .rif files at once with HAN tools?

montcer

Member
Hello,

I have several DLC for a backup I have, all those being 100kb and each one have its own rap and rif files.
Inject the license via HAN tools will take painfull minutes!!! .rif files names are quite large so there should be an easier way.

Does anyone knows an easier way to copy several .rif files at once?

What I have done to sort it out is a Windows batch file that creates a very simple HTML page with the information given (at least 3 .rif names) and then, I access to it through the PS3 so I can copy the .rif names to the HAN injector page. The code is as follows:

Code:
@echo off
set name=
set gamerif=
set nam1=
set gam1rif=
set nam2=
set gam2rif=
echo.
echo Game name?
set /p name=: 
echo.
echo Game .rif name?
set /p gamerif=: 
echo.
echo Game name 2?
set /p nam1=: 
echo.
echo Game .rif name 2?
set /p gam1rif=: 
echo.
echo Game name 3?
set /p nam2=: 
echo.
echo Game .rif name 3?
set /p gam2rif=: 
echo ^<html^> > html\rif.html
echo ^<head^> >> html\rif.html
echo ^<meta charset="UTF-8"^> >> html\rif.html
echo ^<title^>RIF list^</title^> >> html\rif.html
echo ^</head^> >> html\rif.html
echo ^<h1^>%name%^</h1^> >> html\rif.html
echo ^<h2^>%gamerif%^</h2^> >> html\rif.html
echo ^<h1^>%nam1%^</h1^> >> html\rif.html
echo ^<h2^>%gam1rif%^</h2^> >> html\rif.html
echo ^<h1^>%nam2%^</h1^> >> html\rif.html
echo ^<h2^>%gam2rif%^</h2^> >> html\rif.html
echo ^</body^> >> html\rif.html
echo ^</html^> >> html\rif.html
pause
exit
 
Hello,

I have several DLC for a backup I have, all those being 100kb and each one have its own rap and rif files.
Inject the license via HAN tools will take painfull minutes!!! .rif files names are quite large so there should be an easier way.

Does anyone knows an easier way to copy several .rif files at once?

What I have done to sort it out is a Windows batch file that creates a very simple HTML page with the information given (at least 3 .rif names) and then, I access to it through the PS3 so I can copy the .rif names to the HAN injector page. The code is as follows:

Code:
@echo off
set name=
set gamerif=
set nam1=
set gam1rif=
set nam2=
set gam2rif=
echo.
echo Game name?
set /p name=:
echo.
echo Game .rif name?
set /p gamerif=:
echo.
echo Game name 2?
set /p nam1=:
echo.
echo Game .rif name 2?
set /p gam1rif=:
echo.
echo Game name 3?
set /p nam2=:
echo.
echo Game .rif name 3?
set /p gam2rif=:
echo ^<html^> > html\rif.html
echo ^<head^> >> html\rif.html
echo ^<meta charset="UTF-8"^> >> html\rif.html
echo ^<title^>RIF list^</title^> >> html\rif.html
echo ^</head^> >> html\rif.html
echo ^<h1^>%name%^</h1^> >> html\rif.html
echo ^<h2^>%gamerif%^</h2^> >> html\rif.html
echo ^<h1^>%nam1%^</h1^> >> html\rif.html
echo ^<h2^>%gam1rif%^</h2^> >> html\rif.html
echo ^<h1^>%nam2%^</h1^> >> html\rif.html
echo ^<h2^>%gam2rif%^</h2^> >> html\rif.html
echo ^</body^> >> html\rif.html
echo ^</html^> >> html\rif.html
pause
exit
See the new resigner tool , you can install rifs via pkg.
 
Use Habib's resigner tool and make signed pkgs of all your raps then install them the same way u would install any pkg also don't forget to enable han :)
 
Back
Top