About 97,000 results
Open links in new tab
  1. Factory reset Android using ADB

    May 31, 2017 · I am trying to factory data reset my Oppo Neo 7 (Android 5.1) using ADB shell. Any way I can try and link to ADB shell?

  2. twrp - How to uninstall a system app using adb uninstall …

    Jul 17, 2017 · This question is specific to using adb to uninstall a package. There are several similar questions but are all different from this one, as they're focused on removing an …

  3. settings - Enable location services via ADB or shell - Android ...

    Feb 22, 2013 · 4 Enable: adb shell settings put secure location_mode 3 Disable: adb shell settings put secure location_mode 0 See Stack Overflow - How to enable/disable GPS …

  4. How can I shut down my Android device using an adb command?

    How do I halt an android phone using adb command? I can reboot, but I don't know how to halt. I tried shutdown -k wait command, but it did not work.

  5. ADB - bypass lock screen - Android Enthusiasts Stack Exchange

    In the question it is mentioned that adb does not work and that the device is not rooted (which should be required for your second command).

  6. adb - (Re)boot an Android phone from USB - Android Enthusiasts …

    Dec 14, 2014 · Execute adb -s <device ID> reboot - insert the device ID you got on the previous command in this command. This'll reboot your cellphone or for that matter any android device. …

  7. List of ADB settable permissions - Android Enthusiasts Stack …

    Jan 13, 2020 · adb shell pm list permissions That will give you a full list of what permissions are available to be given/rejected on that device, including permissions defined by the …

  8. How to reinstall an uninstalled system app through ADB?

    Jul 31, 2019 · Technically, the command adb shell pm uninstall -k --user 0 <package_name> does not uninstall an app from the device. Instead, it just removes it from a user. There are a …

  9. Enable and disable system apps via ADB

    Nov 8, 2013 · To disable playstore: $ adb shell pm uninstall --user 0 -k com.android.vending Success This uninstalls the app. But there's also a way to restore the app: $ adb shell pm …

  10. Turn phone on with ADB or Fastboot? - Android Enthusiasts Stack …

    May 4, 2012 · My power button seems to have busted, is there a way I can boot my phone using ADB or Fastboot or some other command line interface?