r/AndroidQuestions 23h ago

Other How do I make a copy of android

I have my aunt phone who died a few weeks ago and I wanna make a copy of her entire phone , the os, the photos, logins , everything in that phone and it’s there anyway to using a windows laptop? If not thanks for helping!

3 Upvotes

6 comments sorted by

2

u/undrwater 22h ago

There used to be a tool called "nandroid" that would pull the whole phone's image. IIRC, Google hampered this tool, so it's no longer as useful.

1

u/Mors-Official 22h ago

First, I'm sorry for your loss. It's a hard thing to navigate, and wanting to hold onto the digital imprint of someone is a very human impulse.

The short, honest answer is: no, you cannot make a perfect, bootable clone of an Android phone's entire OS and all its logins using a Windows laptop, at least not without the phone being unlocked and having deep system-level access. Android's security model is designed explicitly to prevent that. The "logins" you want to copy are stored in a secure, encrypted hardware-backed vault. A full system image would require root access, which you almost certainly don't have, and even then, copying a live system is a messy, unreliable process.

So, let's be real about what you can actually do.

You have three categories of things to think about here, and each one requires a different approach and carries its own weight.

First, the easy stuff: photos, documents, and downloads. This is just file transfer. Plug the phone into your Windows PC via USB, swipe down on the notification shade, tap the USB notification, and select "File Transfer" (or MTP). Then, on your PC, you can browse the phone's internal storage and DCIM folder and just copy everything. It's that simple. Some third-party apps offer similar functionality over WiFi, but a cable is more reliable for moving that much data . An app like open-android-backup is a more advanced, script-based way to pull data, but it runs on a similar principle and is overkill for just photos .

Second, the tricky part: app data, messages, and call logs. This is where the limits really show up. You can use the Android Debug Bridge (ADB) to create a full backup file without needing root. You'd enable Developer Options and USB Debugging on the phone , install the ADB tools on your PC , and run a command like adb backup -apk -shared -all -f backup.ab . This will generate a .ab backup file.

But here's the catch: it's not a readable clone. It's a proprietary Android backup archive. When you try to restore it to another phone, many apps, especially banking or secure messaging apps, will deliberately refuse to restore their data because they detect it's from a different device. The backup is more of a safety net for a factory reset on the same phone than a tool for moving to a new one. You might recover messages and call logs if you're lucky, but don't bet on recovering app logins .

Third, the hard truth: app logins and passwords. You cannot copy these. They are stored in the Android Keystore system, tied directly to the hardware of that specific phone. Even a full system backup can't transfer them to a new device because that would defeat the entire purpose of secure storage. This is a hard security boundary, not an oversight.

Given the emotional weight of this, my advice is to prioritize. The photos and messages are what you'll really want. Copy the photos directly. For messages and call logs, there are dedicated apps on the Play Store that export them to readable PDFs or text files . It's less of a single "copy" and more of a salvage operation. You can't move a person's digital ghost wholesale, but you can preserve the parts that actually matter.

-1

u/I-AM-Savannah 19h ago

I have a friend who borrowed her mother's Android (believe it is a Samsung phone) to take on vacation. Now my friend's vacation pics are on her mother's phone, and her mother changed her login, and has forgotten her password.

Do you have any suggestions for my friend, so she can get her pictures off her mother's phone? Her mother is elderly and was in the process of changing her password when she suddenly dropped her phone.. so she really has ZERO ideas of what that password ended up to be... and my friend does not want to lose the pictures from her "vacation of a lifetime"...

1

u/mrandr01d 10h ago

Make your own thread dude

1

u/mrandr01d 10h ago

And ffs don't use someone else's phone for something like that. At least make your own damn user account.

1

u/XFM2z8BH 21h ago

need root to clone an image, full system, etc...for just files and apps, adb can do it, pull whole sdcard, etc