u/Fit_Mongoose_5401

How to Remove Bloatware on Android With No ROOT Using ADB

Here guys, i'm gonna share a way to delete any app that can be uninstalled using simple tools, just follow the steps

What You'll Need

  • A Windows PC
  • A USB cable
  • Your Android phone

Step 1: Grab ADB & Fastboot

Download it from this XDA link: https://xdaforums.com/t/tool-windows-adb-fastboot-march-2024.3944288/

Install it, then open PowerShell or CMD.

Step 2: Turn on USB Debugging

  1. Go to Settings > About Phone
  2. Tap Build Number 7 times (
  3. You'll see "You are now a developer!"
  4. Go to Developer Options and turn on USB Debugging

>

Step 3: Connect Your Phone to Your PC

  1. Plug in your phone via USB
  2. Run this in PowerShell:

​

adb devices
  1. Your phone will show a popup — tap Allow
  2. Nothing showing up? Try this:

​

adb kill-server
adb start-server
adb devices
  1. You should see your device listed as device

Step 4 — Get Into ADB Shell

adb shell

Step 5 — Start Uninstalling

Just paste whichever ones you want gone

Google stuff:

pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.google.android.googlequicksearchbox
pm uninstall -k --user 0 com.google.android.youtube
pm uninstall -k --user 0 com.android.vending

Xiaomi stuff:

pm uninstall -k --user 0 com.mi.globalbrowser

>

Want The App Back?

Just run this and it's restored:

adb shell pm install-existing PACKAGE_NAME
reddit.com
u/Fit_Mongoose_5401 — 21 hours ago