Saturday, October 15, 2016

Backup Restore of your Android without Rooting

Backup Restore of your Android without Rooting


How to take full Backup of your Android without Rooting
------------------------------------------------------
Platform Tools with the latest version using SDK Manager.

First of all, connect your Android Device with your Computer using USB cable.
Then, in your Computer open the command prompt. 
Once it opens, type the following command to ensure that Computer has recognized your device:
adb devices.
The command "adb backup" is to enable you to perform full system backup.

The command format to create backup is:
adb backup [-f <file>] [-apk | -noapk] [-shared | -noshared] [-all] [-system | nosystem] [<packages...>]

and the most basic command is:
adb backup -apk -shared –all -system

The above command will help you to take the backup of app and device data only to the current directory as "backup.ab"
in case if it doesn’t work then try the following command:
adb backup -apk -shared –all -system –f C: ackup.ab 
or 
you can also type the desired folder path in place of C:.

How To Restore the Device backup
------------------
Now, here is the command to restore your device through command line:
adb restore C: ackup.ab 

For any queries, Please leave comments bellow.

HELP MAKES ALL HAPPY

Go to link download

No comments:

Post a Comment