When writing:
adb reboot -p
I expect the unit to power down indefinitely. Instead, it just reboots automatically, the same as having written:
adb reboot
only.
Why is that? What should I write?
When writing:
adb reboot -p
I expect the unit to power down indefinitely. Instead, it just reboots automatically, the same as having written:
adb reboot
only.
Why is that? What should I write?
Many phones start booting when a power cable is attached. This could be the reason here for the phone rebooting instantly instead of staying off.
This should work
adb shell reboot -p
adb shell reboot -p. – beeshyams Dec 27 '16 at 13:00adb reboot -pmeans executeadbwith argumentsrebootand-p.adb shell reboot -pmeans execute ashellon the device, then execute the programrebootwith argument-pwhich resides inside the device. This is the difference. – Grimoire Dec 27 '16 at 16:23