About 96,400 results
Open links in new tab
  1. Factory reset Android using ADB

    Feb 8, 2021 · 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 command …

    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 application by any …

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

    Jul 21, 2021 · 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 location services on …

  4. 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. You …

  5. 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.

  6. How to switch (not only on or off) the mobile data and wifi using adb?

    Aug 10, 2020 · I just have to figure out how to turn usb-modem and wifi-hotspot on and off via adb. and there are problems with auto-completion of bash script commands as you type, but that's a different …

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

    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 manufacturer or …

  8. Reset PIN from adb shell - Android Enthusiasts Stack Exchange

    Apr 27, 2020 · I have forgotten the PIN of a device but I do have access to a root shell with adb shell and su Is there some way I could remove the screen PIN lock or change it?

  9. Get IMEI number with ADB command - Android Enthusiasts Stack …

    Apr 5, 2018 · I am working with ADB on my Samsung Galaxy device. I want to get the IMEI number of the device using ADB, but I have been unable to do that. I tried the following: adb shell dumpsys …

  10. 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 couple of ways …