Skip to content

Instantly share code, notes, and snippets.

@jamesy0ung
Created October 19, 2024 01:32
Show Gist options
  • Save jamesy0ung/a4d26bd580fecfa51562ebbfdc303c25 to your computer and use it in GitHub Desktop.
Save jamesy0ung/a4d26bd580fecfa51562ebbfdc303c25 to your computer and use it in GitHub Desktop.
Meta/Oculus debloater
@echo off
echo Disabling Oculus packages...
adb shell pm disable-user --user 0 com.oculus.explore
if %errorlevel% neq 0 echo Failed to disable com.oculus.explore
adb shell pm disable-user --user 0 com.oculus.socialplatform
if %errorlevel% neq 0 echo Failed to disable com.oculus.socialplatform
adb shell pm disable-user --user 0 com.meta.curio.toybox
if %errorlevel% neq 0 echo Failed to disable com.meta.curio.toybox
echo Done.
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment