Skip to content

Instantly share code, notes, and snippets.

@dyazincahya
Created April 1, 2023 13:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dyazincahya/2b5d650eab23ea014d196f666a7958b3 to your computer and use it in GitHub Desktop.
Save dyazincahya/2b5d650eab23ea014d196f666a7958b3 to your computer and use it in GitHub Desktop.
Bulk remove bloatware for Xiaomi Redmi Note 11
@echo off
set /p Y=Enter adb.exe folder path:
cd %Y%
adb devices
pause
for %%X in (
"com.xiaomi.glgm"
"pm uninstall 'com.google.android.apps.magazines"
"com.neptune.domino"
"com.jobstreet.jobstreet"
"com.king.candycrushsaga"
"com.soulcompany.bubbleshooter.relaxing"
"sg.bigo.live"
"com.mi.global.shop"
"com.mi.global.bbs"
"com.sukhavati.gotoplaying.bubble.BubbleShooter.mint"
"com.mintgames.triplecrush.tile.fun"
"com.logame.eliminateintruder3d"
"com.kingsgroup.ss.xiaomi"
"com.jewelsblast.ivygames.Adventure.free"
"com.block.puzzle.game.hippo.mi"
"com.ss.android.ugc.trill"
"com.netflix.mediaclient"
"mobi.megatoon.novel"
"com.linkedin.android"
"com.kwai.bulldog"
"com.tencent.igxiaomi"
"com.spotify.music"
"com.amazon.avod.thirdpartyclient"
"com.shopee.id"
"com.lazada.android"
"com.facebook.katana"
"com.amazon.mShop.android.shopping"
"com.booking"
"com.google.android.youtube"
"com.miui.micloudsync"
"com.google.android.apps.subscriptions.red"
"com.android.hotwordenrollment.xgoogle"
"com.google.android.apps.googleassistant"
"com.miui.player"
"com.mi.globalminusscreen"
"com.android.hotwordenrollment.okgoogle"
"com.miui.bugreport"
"com.mint.keyboard"
"com.miui.cloudbackup"
"com.android.chrome"
"com.xiaomi.mipicks"
"com.miui.cloudservice"
"com.xiaomi.payment"
"com.google.android.googlequicksearchbox"
"com.miui.videoplayer"
"com.google.android.videos"
"com.mi.globalbrowser"
"com.google.android.apps.tachyon"
"com.google.android.apps.podcasts"
"com.google.android.apps.youtube.music"
"com.miui.msa.global") do (
adb shell pm uninstall %%X
adb shell pm uninstall --user 0 %%X
)
pause
@dyazincahya
Copy link
Author

  • Install Android Debug Bridge (adb) on your computer
  • Adjust Application ID, add or remove application id as you wish
  • open CMD
  • call remove_bloatware_redmi_note11.bat file on your CMD

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