Changes for page Samsung

Last modified by Drunk Monkey on 2021-02-08 09:34

From version 13.2
edited by Drunk Monkey
on 2021-02-08 08:39
Change comment: There is no comment for this version
To version 16.1
edited by Drunk Monkey
on 2021-02-08 08:55
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -1,6 +1,5 @@
1 1  Originally from: [[https:~~/~~/r1.community.samsung.com/t5/others/how-to-remove-samsung-bloatware-without-root/td-p/5817510>>https://r1.community.samsung.com/t5/others/how-to-remove-samsung-bloatware-without-root/td-p/5817510]]
2 2  
3 -(% class="wikigeneratedid" %)
4 4  == Installing adb on Mac ==
5 5  
6 6  [[https:~~/~~/stackoverflow.com/questions/31374085/installing-adb-on-macos>>https://stackoverflow.com/questions/31374085/installing-adb-on-macos]]
... ... @@ -7,10 +7,8 @@
7 7  
8 8  == How to Remove Samsung Bloatware without Root ==
9 9  
10 -[[[[image:https://r1.community.samsung.com/t5/image/serverpage/avatar-name/comm_avata_09/avatar-theme/candy/avatar-collection/newAvatars/avatar-display-size/message/version/2?xdesc=1.0||alt="SamNoteUser"]]>>url:https://r1.community.samsung.com/t5/user/viewprofilepage/user-id/9419552]]
11 -
12 - [[SamNoteUser>>url:https://r1.community.samsung.com/t5/user/viewprofilepage/user-id/9419552]]
13 -
9 +[[[[image:2.png]]>>https://r1.community.samsung.com/t5/user/viewprofilepage/user-id/9419552]]
10 +[[SamNoteUser>>url:https://r1.community.samsung.com/t5/user/viewprofilepage/user-id/9419552]]
14 14  ‎07-12-2020 07:15 AM
15 15  
16 16  Samsung phones and Galaxy Tabs come with lots of preinstalled apps many of which are useless to the end-user. Such apps are called bloatware and because they are installed as system apps, the uninstall option for them remains unavailable. Below is a big list of Samsung bloatware that is safe to remove. Since there’s no bloat removal tool available out there, we’ll also see how we can disable and uninstall system apps without root using ADB commands.
... ... @@ -43,16 +43,17 @@
43 43  
44 44  1. **Using ADB command**
45 45  11. Launch the Command prompt or PowerShell window.
46 -11. Enable **USB Debugging** on your Samsung Galaxy phone or Tab.
47 -11. Connect your device to the computer.
48 -11. Execute the following ADB shell commands. The first for the list of all apps, and the second one for the list of all system apps.
43 +111. Enable **USB Debugging** on your Samsung Galaxy phone or Tab.
44 +111. Connect your device to the computer.
45 +111. Execute the following ADB shell commands. The first for the list of all apps, and the second one for the list of all system apps.
49 49  11. **#1 Get the list of all apps**
50 -11. adb shell pm list packages
47 +111. ##{{code language="bash"}}adb shell pm list packages{{/code}}##
51 51  11. **#2 Get the list of system apps only**
52 -11. adb shell pm list packages -s
49 +111. {{code language="bash"}}adb shell pm list packages -s{{/code}}
53 53  11. **#3 Get the list of all Samsung apps**
54 -11. adb shell pm list packages | grep 'samsung' ('pm' in the above commands stands for "package manager")
55 -11. You’ll now have the list of package names of all Samsung apps and other Android apps installed on your device.
51 +111. {{code language="bash"}}adb shell pm list packages | grep 'samsung'{{/code}}
52 +('pm' in the above commands stands for "package manager")
53 +111. You’ll now have the list of package names of all Samsung apps and other Android apps installed on your device.
56 56  [[image:SamNoteUser_0-1594509216501.png]]
57 57  ADB shell pm list packages command
58 58  You can copy the list of apps from the command windows and copy it to a text file.
... ... @@ -60,11 +60,8 @@
60 60  You can find some good apps in the Google Play Store that can help you with finding the app package names. [[App Inspector>>url:https://play.google.com/store/apps/details?id=com.ubqsoft.sec01]], [[Package Browser>>url:https://play.google.com/store/apps/details?id=by4a.reflect]], [[Package Name Viewer 2.0>>url:https://play.google.com/store/apps/details?id=com.csdroid.pkg]], and [[Apps Inspector>>url:https://play.google.com/store/apps/details?id=bg.projectoria.appinspector]] are some worthy options that you should try.
61 61  1. **Via Play Store URL**
62 62  You can find out the APK package name for any app by opening the app page in the Play Store in a desktop browser as shown below.
63 -
64 64  [[image:SamNoteUser_1-1594509216503.png]]
65 65  
66 -
67 -
68 68  === Samsung Bloatware List ===
69 69  
70 70  To make your job easier, I have prepared a list of safe to remove apps on your Samsung device. The pre-installed apps listed below are found on the Galaxy S9, S10, S20, and Note 10. Most of them are common Samsung apps found on all Galaxy phones and Tabs by the Korean giant.
... ... @@ -252,7 +252,7 @@
252 252  [[image:SamNoteUser_3-1594509216507.jpg]]
253 253  1. This should return the ID of your device in the form of an alphanumeric string to show that your phone is properly connected and is ready to interact with ADB via computer.[[image:SamNoteUser_4-1594509216508.png]]
254 254  1. Now, execute the following command.
255 -adb shell
250 +{{code language="bash"}}adb shell{{/code}}
256 256  1. You can now execute  **pm uninstall -k ~-~-user 0**  (this will keep the app data and cache), or **pm uninstall ~-~-user 0**  (delete app data as well) followed by the package name of the system app to uninstall to remove it from your phone. You can view the [[full list of safe to remove Samsung apps along with the command extension>>url:https://drive.google.com/file/d/1wuH2k0IafCCjxDnVLgnE26l-hsuYgmGl/view]] on Google Drive. For example, if you want to remove Samsung Email from your device, use the following command.
257 257  1. pm uninstall -k ~-~-user 0 com.samsung.android.email.provider
258 258  1. pm uninstall ~-~-user 0 com.samsung.android.email.provider
... ... @@ -267,7 +267,7 @@
267 267  
268 268  It simply means that if you need the uninstalled system app sometime later, you can easily re-install the removed app using another ADB shell command.
269 269  
270 -cmd package install-existing com.samsung.android.bixby.wakeup
265 +{{code language="bash"}}cmd package install-existing com.samsung.android.bixby.wakeup{{/code}}
271 271  
272 272  Simply execute the above command as shown below to restore an app package that you uninstalled earlier.
273 273  
... ... @@ -277,6 +277,6 @@
277 277  
278 278  There is one ADB shell command that lets you just disable an app package on your Samsung or Android. Below is an example command for disabling Bixby on Samsung devices.
279 279  
280 -adb shell pm disable-user ~-~-user 0 com.samsung.android.bixby.wakeup
275 +{{code language="bash"}}adb shell pm disable-user ~-~-user 0 com.samsung.android.bixby.wakeup{{/code}}
281 281  
282 282  That’s all about how we can remove bloatware on Samsung Galaxy devices and re-install the uninstalled apps without root using ADB shell commands. I’ll keep updating the list of safe to remove Samsung bloatware for the phones that will be launched in the future.
2.png
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.pdwalker
Size
... ... @@ -1,0 +1,1 @@
1 +2.8 KB
Content