ZenFone5に限ったことではないですが、Android 4.xからadb backupが使えるようです。
Android 4.0.xシリーズからできる、フルバックアップ(バックアップ)とリストア コマンド編
http://hope-and-species.jimdo.com/android-4-0-xシリーズからできる-フルバックアップ-バックアップ-とリストア-コマンド編/
こちらに詳しく書かれているので、こちらを参照して下さい:-P
下記のコマンドでデバイス名が表示されない場合はPCとAndroid端末が正常に接続されていません。
PC側のドライバやAndroid端末のUSBデバックモードなどを確認して下さい。
1 2 |
D:\platform-tools>adb devices List of devices attached |
デバイス情報が表示されればOKです。
1 2 3 4 5 6 7 |
D:\platform-tools>adb devices List of devices attached ABBYXQ00Z999 device D:\platform-tools>adb devices -l List of devices attached ABBYXQ00Z999 device product:JP_Phone model:ASUS_T00P device:ASUS_T00P |
取り敢えず下記のコマンドでバックアップを実行しました。
1 2 |
D:\platform-tools>adb backup -f Zenfone5_20150511.backup -apk -noshared -all -system Now unlock your device and confirm the backup operation. |
バックアップが成功するとカレントディレクトリにバックアップファイルが作成されます。
1 |
2015/05/01 12:30 676,115,909 Zenfone5_20150511.backup |
このファイルのリストアでどこまで戻るのか、機会があれば試してみます。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
D:\platform-tools>adb help Android Debug Bridge version 1.0.31 adb backup [-f <file>] [-apk|-noapk] [-obb|-noobb] [-shared|-noshared] [-all] [-system|-nosystem] [<packages...>] - write an archive of the device's data to <file>. If no -f option is supplied then the data is written to "backup.ab" in the current directory. (-apk|-noapk enable/disable backup of the .apks themselves in the archive; the default is noapk.) (-obb|-noobb enable/disable backup of any installed apk expansion (aka .obb) files associated with each application; the default is noobb.) (-shared|-noshared enable/disable backup of the device's shared storage / SD card contents; the default is noshared.) (-all means to back up all installed applications) (-system|-nosystem toggles whether -all automatically includes system applications; the default is to include system apps) (<packages...> is the list of applications to be backed up. If the -all or -shared flags are passed, then the package list is optional. Applications explicitly given on the command line will be included even if -nosystem would ordinarily cause them to be omitted.) |