Uninstall any Pre-installed App without Root

by | Aug 20, 2020 | OnePlus, Technology, Tutorials | 0 comments

  • Follow on Instagram
  • Join us on Telegram
  • Like us on Facebook
  • Follow on Twitter
  • Subscribe to Youtube Channel

Many OEM’s are used to be known for added bloatware on the devices which are nonremovable. They are the part of system Operating system and without rooting the phone you don’t have the option to remove them. And in case you remove them, your official updates might get impacted and you won’t get them. Let’s take the example of OnePlus, since the launch of OnePlus 7 series they have partnered with Netflix and now Netflix comes pre-installed and you won’t be able to remove it. Now OnePlus is partnered with Facebook and now Facebook services get pre-installed on your new OnePlus devices. Such bloatware keeps running in the background and eventually results in battery drainage, data consumption, etc. So let’s see how we can uninstall any pre-installed app without root.

Steps to Un-install any Pre-installed App without Root

Note: DO NOT remove any application which is important running the device. Only remove the third-party application which comes pre-installed. If you remove any system application your device will end up in a boot loop.
Pre-requisite:
  1. Connect your device to your laptop/desktop and open command prompt.
  2. Run the below command to see your device is connected to use command prompt access the ADB folder and confirm the device the visible.
    cd C:\adb    ------------------>> This command is used to redirect the default path to ADB folder
    adb device   ------------------>> This command is used to see the list of devices connected to your computer
    ADB Devices
  3. Next, you need to get the list of all the application which are installed on your device. This gives the exact package name of the application and which can be removed.
    adb shell 
    pm list packages
  4. From the visible list, get the package name of the application which you need to uninstall. Copy the name for ease and run the below command.
    pm uninstall -k --user 0 <PACKAGE NAME> ---->>>> Repalce "<PACKAGE NAME>" with the applicaiotn you need to remove.
    For Exaple, to remove Netflix, you need to run :
    pm uninstall -k --user 0 com.netflix.mediaclient
    Uninstall Application ADB
  5. That’s it, you will get a message saying “Sucess“. This means the requested pre-installed application has been removed from your device and will no longer be visible on your device.

This process of removal is safe as this will not impact your OTA updates pushed by your OEM. These packages are not completely removed from your device. The installation package is still stored on your device and you can get them reinstalled again. So let’s see how to get back the removed package.

Steps to Install any Removed Application.

The process is quite simple. You just need to connect your device to your computer and run the below command to get the application back.

adb shell cmd package install-existing <PACKAGE NAME> ---->>>> Repalce "<PACKAGE NAME>" with the applicaiotn you need to add back.
For example to get the removed Netflix applicaiton, you need to run
adb shell cmd package install-existing com.netflix.mediaclientInstall Application -ADB
Bonus: If you are an OnePlus user and want to remove the Netflix and Facebook services, then you can use the below package names: Netflix: com.netflix.mediaclient Facebook Services: com.facebook.appmanager com.facebook.services com.facebook.system  

In case you have any queries, do let us know in the comment section.

You can follow us on our Social Media profiles to get the quickest updates. Follow us – Instagram: /StopToExplore, Telegram: /StopToExplore, Facebook: /StopToExplore , Twitter: /StopToExplore, Youtube: /StopToExplore

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 43 other subscribers