Created
October 19, 2024 01:32
-
-
Save jamesy0ung/a4d26bd580fecfa51562ebbfdc303c25 to your computer and use it in GitHub Desktop.
Meta/Oculus debloater
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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