2

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?

Andrew T.
  • 15,988
  • 10
  • 74
  • 123
JohnyTex
  • 267
  • 1
  • 6
  • 16

2 Answers2

2

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.

Timo Schwarzer
  • 795
  • 3
  • 11
1

This should work

adb shell reboot -p
Murometz80
  • 11
  • 1
  • 1
    Welcome to the Q&A site Android Enthusiasts Stack Exchange. While this is a valid answer, could you [edit] and expand on the reason why it works? Otherwise, it's okay. – Andrew T. Aug 08 '23 at 17:23