Skip to content

Instantly share code, notes, and snippets.

@SvenGDK
Last active January 20, 2026 12:35
Show Gist options
  • Select an option

  • Save SvenGDK/6525ec4af64e45a847e35af45da46ab4 to your computer and use it in GitHub Desktop.

Select an option

Save SvenGDK/6525ec4af64e45a847e35af45da46ab4 to your computer and use it in GitHub Desktop.
How to fully block YouTube from being updated on the PS5 when using YT2JB.

Simply modifing appinfo.db will not block YouTube from being updated. As soon as you connect to the internet without setting a DNS it will automatically refresh itself to the correct clean state, the icon also switches back to original. This can result in a softlock where you have to set up everyhting again.

In order to properly block YouTube from being updated, you also need to fully update YouTube's parameters after a new installation.

The param.json file of the YouTube app is actually located at 3 positions when installed :

  • At /system_data/priv/appmeta/PPSA01650/param.json
  • At /user/appmeta/PPSA01650/param.json
  • And also inside /system_data/priv/mms/app.db TABLE: tbl_contentinfo COLUMN: AppInfoJson
    • The values aren't exactly the same ones as in param.json but the CONTENT_VERSION and VERSION_FILE_URI is also located in there

To fully block YouTube from being updated:

  1. Get /system_data/priv/mms/appinfo.db and apply following patch :
UPDATE tbl_appinfo SET val = 'http://127.0.0.2' WHERE titleId = 'PPSA01650' AND key = 'VERSION_FILE_URI';
UPDATE tbl_appinfo SET val = '99.999.999' WHERE titleId = 'PPSA01650' AND key = 'CONTENT_VERSION';
  1. Get 1 param.json from /system_data/priv/appmeta/PPSA01650/param.json OR /user/appmeta/PPSA01650/param.json
  2. Modify contentVersion to 99.999.999 and versionFileUri to http://127.0.0.2
  3. Get /system_data/priv/mms/app.db and apply following patch :
UPDATE tbl_contentinfo
SET AppInfoJson = json_set(
    AppInfoJson,
    '$.CONTENT_VERSION', '99.999.999',
    '$.VERSION_FILE_URI', 'http://127.0.0.2'
)
WHERE titleId = 'PPSA01650';
  1. Navigate to the Settings on your PS5
  2. Upload all files back using FTP :
  • param.json to /system_data/priv/appmeta/PPSA01650/param.json AND /user/appmeta/PPSA01650/param.json
  • appinfo.db to /system_data/priv/mms/appinfo.db
  • app.db to /system_data/priv/mms/app.db
  1. Press PS button on the controller and restart the console
@rocknard
Copy link

You are showing me appinfo.db, not app.db (they are stored on /system_data/priv/mms/, as you said). appinfo.db is using table "tbl_appinfo", but app.db is using "AppInfoJson". Please, recheck.

appinfo.db was adressed on my first post, you corrected it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment