Uninstall bloatware on Samsung phone
Enabling USB Debugging on your phone
Open the Settings app on your phone and scroll down to About Phone.
Tap on the Build Number seven times to enable Developer Options.
Go back to the Settings menu and go to System > Developer Options and enable USB Debugging.
Interfacing your phone with ADB
Plug your phone into your computer and change the USB settings from Charge only mode to File transfer (MTP) mode.
Ensure that you have ADB installed on your computer.
On your computer, browse to the directory where ADB is installed. Hold the Shift key and right-click on the name of the directory and select Open command or PowerShell window here.
If you're using a Mac, launch a Terminal window and navigate to the ADB directory using cd "path to the directory" (without the angular brackets).
Now, type in adb devices
and hit enter.
You will see the system is starting the ADB daemon. If this is your first time running ADB, you'll see a prompt on your phone asking you to authorize a connection with the computer. Grant it
.
Finding the name of the packages to uninstall
In the command prompt/terminal window, enter adb shell
and hit enter.
Then, use the following command:
pm list packages | grep '<OEM/Carrier/App Name>'
This will list all the OEM and carrier apps installed on your device.
Alternatively, you can also use an app called App Inspector from the Play Store to know the package names of all the installed apps on your phone. Install the app, select the app you want to uninstall and the package name will be listed there. Make a note of the package names of all the apps you want to uninstall.
Examples
DO NOT REMOVE com.samsung.android.providers.contacts
Uninstall apps
pm list packages --user 0 | grep 'calendar'
pm uninstall -k --user 0 com.samsung.android.app.notes.addons
pm uninstall -k --user 0 com.samsung.android.app.notes
pm uninstall -k --user 0 com.samsung.android.app.reminder
pm uninstall -k --user 0 com.samsung.android.calendar
pm uninstall -k --user 0 com.samsung.android.app.settings.bixby
pm uninstall -k --user 0 com.samsung.android.bixby.service
pm uninstall -k --user 0 com.samsung.android.bixby.agent
pm uninstall -k --user 0 com.samsung.android.bixby.wakeup
pm uninstall -k --user 0 com.samsung.android.bixbyvision.framework
pm uninstall -k --user 0 com.samsung.android.bixby.ondevice.enus
pm uninstall -k --user 0 com.samsung.android.visionintelligence
pm uninstall -k --user 0 com.samsung.android.app.contacts
pm uninstall -k --user 0 com.samsung.android.messaging
pm uninstall -k --user 0 com.samsung.android.app.spage
pm uninstall -k --user 0 de.axelspringer.yana.zeropage
pm uninstall -k --user 0 com.touchtype.swiftkey
pm uninstall -k --user 0 com.samsung.android.mdx
pm uninstall -k --user 0 com.sec.android.app.myfiles
pm uninstall -k --user 0 com.sec.android.app.clockpackage
pm uninstall -k --user 0 com.samsung.android.app.tips
pm uninstall -k --user 0 com.samsung.android.dialer
pm uninstall -k --user 0 com.sec.android.daemonapp
How to Re-install an Uninstalled App
If you've deleted an app by mistake or a secondary app is force closing because it's dependant on an app you uninstalled, you can re-install the app using the following set of commands:
adb shell
pm install-existing NameOfPackage
# Example:
pm install-existing --user 0 com.samsung.android.providers.contacts
Read more
How to install ADB on Windows, macOS, and Linux
How to Uninstall Carrier/OEM Bloatware without Root Access
Galaxy Note
pm uninstall -k --user 0 com.samsung.android.app.notes.addons
pm uninstall -k --user 0 com.samsung.android.app.notes
pm uninstall -k --user 0 com.samsung.android.app.reminder
pm uninstall -k --user 0 com.samsung.android.calendar
pm uninstall -k --user 0 com.samsung.android.app.settings.bixby
pm uninstall -k --user 0 com.samsung.android.bixby.service
pm uninstall -k --user 0 com.samsung.android.bixby.agent
pm uninstall -k --user 0 com.samsung.android.bixby.wakeup
pm uninstall -k --user 0 com.samsung.android.bixbyvision.framework
pm uninstall -k --user 0 com.samsung.android.app.contacts
pm uninstall -k --user 0 com.samsung.android.messaging
pm uninstall -k --user 0 com.samsung.android.app.spage
pm uninstall -k --user 0 de.axelspringer.yana.zeropage
pm uninstall -k --user 0 com.touchtype.swiftkey
pm uninstall -k --user 0 com.microsoft.appmanager
pm uninstall -k --user 0 com.microsoft.office.excel
pm uninstall -k --user 0 com.microsoft.office.word
pm uninstall -k --user 0 com.microsoft.office.powerpoint
pm uninstall -k --user 0 com.microsoft.skydrive
pm uninstall -k --user 0 com.samsung.android.app.tips
pm uninstall -k --user 0 com.samsung.android.dialer
pm uninstall -k --user 0 com.sec.android.app.myfiles
pm uninstall -k --user 0 com.sec.android.app.clockpackage
pm uninstall -k --user 0 com.samsung.android.mdx
pm uninstall -k --user 0 com.sec.android.gallery3d
pm uninstall -k --user 0 com.sec.android.app.samsungapps
pm uninstall -k --user 0 com.samsung.android.game.gamehome
pm uninstall -k --user 0 com.samsung.android.game.gametools
pm uninstall -k --user 0 com.samsung.android.game.gos
Tips
pm install-existing --user 0 com.samsung.android.app.settings.bixby
pm install-existing --user 0 com.samsung.android.bixby.service
pm install-existing --user 0 com.samsung.android.bixby.agent
pm install-existing --user 0 com.samsung.android.bixby.wakeup
pm install-existing --user 0 com.samsung.android.bixbyvision.framework
pm install-existing --user 0 com.samsung.android.app.contacts
pm install-existing --user 0 com.samsung.android.messaging
pm install-existing --user 0 com.samsung.android.app.spage
pm install-existing --user 0 de.axelspringer.yana.zeropage
pm install-existing --user 0 com.touchtype.swiftkey
pm install-existing --user 0 com.samsung.android.mdx
pm install-existing --user 0 com.sec.android.app.myfiles
pm install-existing --user 0 com.sec.android.app.clockpackage
pm install-existing --user 0 com.samsung.android.app.tips
pm install-existing --user 0 com.samsung.android.dialer
pm install-existing --user 0 com.sec.android.daemonapp
pm uninstall -k --user 0 com.google.android.apps.messaging
pm uninstall -k --user 0 com.android.chrome
pm uninstall -k --user 0 com.google.android.gm
pm uninstall -k --user 0 com.samsung.android.app.spage
pm uninstall -k --user 0 de.axelspringer.yana.zeropage
pm uninstall -k --user 0 com.sec.android.app.sbrowser