Reputation: 125
I want to use the adb backup / restore
. I use adb restore
to restore a backup. But my problem after some delay, the mechanism restore stops. I want my restore do not stop. And if possible it starts automatically and it does not expect a validation for me.
used adb back up
to get my backup.ab. Then i use adb restore backup.ab
Upvotes: 3
Views: 21953
Reputation: 6156
When restoring, you need to enter the password that your phone had when you made the backup, because the backup is encrypted. If you don't enter the correct password, adb restore
will terminate without warning.
Upvotes: 0
Reputation: 819
This might be 2 years too late but if you remember what parameters you used in the backup, use them when doing adb restore backup.ab
.
Upvotes: -1