-1

Is it possible to boot the device when the battery is already inserted, and then main power is connected, without the help of any power switches?

Is there any ADB command to boot up the device after completely turned off?

Please keep in mind: I am not asking for reboot, I'll ask for boot after switched off.

Martin Brisiak
  • 3,872
  • 12
  • 37
  • 51
khushhal goyal
  • 97
  • 2
  • 10
  • *Is there any Adb command to boot up the device after completely turned off ??* **no** – Selvin Jun 23 '16 at 11:04
  • I don't think it's possible, if you switch off your device, it will be disconnected from adb, so no adb commands will work. – danypata Jun 23 '16 at 11:08
  • you can put some devices into fastboot mode (sometimes its volume down + connect usb cable), in that case you could use `fastboot reboot` to boot the device. Anyways, this question is not really programming related, try to ask it on [android.se] – Valentin Kuhn Jun 23 '16 at 11:25
  • "Is it possible to boot the device..." -- ask the device manufacturer. – CommonsWare Jun 23 '16 at 11:57

2 Answers2

1

Is there any Adb command to boot up the device after completely turned off ??

No.

Perhaps it would help to understand that an app runs. For an app to run it needs a processor/cpu to process the commands. If a processor (cpu) has no power then it can;t process anything. Therefore the app needs power. If there is no power then the app can't run. If it can't run then it can't switch the phone on!!!!!!!

Really quite simple when you think about it.

The closest you will get is to set an alarm to wake up the system if it goes into hibernation/sleep mode

jamesc
  • 12,423
  • 15
  • 74
  • 113
1

Hold the volume + & volume - and plug the usb cable into your device while its plugged into your PC, the phone should enter fastboot mode. Make sure you have adb and fastboot installed on your PC, open the platform tools folder that is in your PCs C: drive, hold the shift key on your keyboard and right click on an empty spot in the folder and open a command window. Run the following command: fastboot reboot

Bigpimpin7
  • 11
  • 1