How to make a full backup of your phone with Android ICS without being root
First of all, you have to specify what we do with this tutorial. You can make backups of different types and in different ways. For example, you can make copies of the SMS applications for it.

You can make a copy of the contacts, but you do not need to, or you can do a general backup of applications. But what many people do not realize is that the latter type of copy, the applications, do not copy the data (your scores, you’ve saved). Well, today we will see how to make a full copy of our Android 4.0.
Requirements
Before you begin, you need to have-
- An Android version 4.0.x IceCreamSandwich
- The SDK 4.0 is installed and properly configured ADB (if you know how to watch this video or this )
If you do not keep the Parad requirements, you should not run anything. Once you are done, let it
Backing
- Connect your phone to your PC and type “adb devices” in the cmd to verify that it recognizes your device. Something like this. If nothing appears, it means that the drivers are properly installed, so check them again.
Next step:

adb backup [-f <file>] [-pk |-noapk] [-shared |-noshared] [-all] [-system | nosystem] [<packages…>]
What does this mean? Well, there are several options for customizing the backup.
If you do not want to roll far, the easiest option is
adb-all-f backup C: \ backup.ab
Put the path or file you want. If you want to dig a little deeper, here is the explanation of each
Parameter | Explanation |
-F <file> | Use this to customize the output file, eg-fc: \ micopia.ab o-fc: \ Program Files \ porn \ cosasverdes \ copia.ab |
-Pk |-noapk | Whether you want to back up the contents of the shared memory / SD card. The default is-noshared. |
-Shared |-noshared | Whether you want to back up the contents of the shared memory / SD card. The default is noshared. |
-All | Makes a copy of everything. |
-System |-nosystem | Whether you want to back up system applications (Clock, Calendar, etc. ..). The default is-system. |
<packages…> | Specifies a particular package to do the backup. eg com.google.android.apps.plus |
Continue with the copy
- Introduces finally the type of copy you want to do. For example: adb backup-apk-shared-all-f C: \ backupEAL.ab
- The following window appears on your Android where you can enter a password to protect it.
- The process will take a few minutes and ends: D
Restore the copy
To restore the backup, the process is equally simple. Just type
adb restore C: \ backupEAL.ab
or the name that you have set and will jump a screen prompting you introduzcáis password before you placed. In a couple of minutillos will have your phone back!
Author’s note : I understand that this tutorial can be a tad advanced level, but not bad from time to time up the difficulty. So learn all icon smile Tutorial: How to make a full backup of your phone with Android ICS without being root.
Note 2 : This process does not make a copy of the SMS.
Via XDA