syntrix
Android Expert
I found a thread on xda, I'll link it later to give it credit, or you can search on your own.
My problem: every copy I did of the internal storage failed on files and win7 wouldn't give the file it was choking on. Also, every single sync or backup option would require the nexus to be mounted as a drive, not over mtp. Trying all this without root... really just the internal storage issues were bugging the heck out of me
Finally got this command to work for backing up the internal storage (I was forgetting the trailing slash!!!)
Assumption is latest sdk-tools and you can at least do an `adb shell`:
The backup command actually works, too:
That is supposed to backup internal storage but it doesn't, hence the first command. This has been reported to backup apps, even your wallpaper settings, etc.
From what I gathered, it won't backup txt messages and widgets on the home screen. I was just really excited that there was a quick and easy way to backup the internal storage!
Additional info, and the thread that made me do a DOH about the trailing slash:
http://forum.xda-developers.com/showthread.php?t=1420351
My problem: every copy I did of the internal storage failed on files and win7 wouldn't give the file it was choking on. Also, every single sync or backup option would require the nexus to be mounted as a drive, not over mtp. Trying all this without root... really just the internal storage issues were bugging the heck out of me
Finally got this command to work for backing up the internal storage (I was forgetting the trailing slash!!!)
Assumption is latest sdk-tools and you can at least do an `adb shell`:
Code:
adb pull /sdcard/ D:\android\nexus\backup\
Code:
adb backup -f D:\android\nexus\backup\nexus.ab -apk -shared -all
From what I gathered, it won't backup txt messages and widgets on the home screen. I was just really excited that there was a quick and easy way to backup the internal storage!
Additional info, and the thread that made me do a DOH about the trailing slash:
http://forum.xda-developers.com/showthread.php?t=1420351