This tool does what you suppose. Currently supports Windows ONLY.
- Download and install
PVRTexTool
from https://developer.imaginationtech.com/pvrtextool/. (You may need to register an account to proceed) - Download the zip file from releases.
- Unzip the zip file.
- That's it!
- Configure the
config.json
, here's the template:
{
"PvrCliPath": ".\\PVRTexToolCLI.exe",
// Path to PVRTexToolCLI.exe
"flag": {
"isEnabledDeleteOrigFile": true,
// true to delete the encrypted original files that are successfully decrypted
"isEnabledDeletePVRFile": true,
// true to delete the _Out.pvr files generated by PVRTexToolCLI.exe
"isEnabledRenameDecFile": true
// true to rename the decrypted files to original name
// (MUST also set "isEnabledDeleteOrigFile" to true)
}
}
- Double-click on
UF-Decrypt.exe
. - Pick the folder you want to decrypt in the popup window.
- Wait for the program to finish its job.
- In the project directory, run:
pip install -r requirements.txt
pip install pyinstaller
pyinstaller -F UF-Decrypt.py
- The .exe file will appear in the
dist
folder.
The Unlicense