Recover Android Files - Tool
#This script will be use if you have a rooted phone with a broken screen and you want access to MTP without accept RSA key
##1. First step
- Connect your phone to computer, dont disconnect the phone
- Enter with your phone into recovery mode.
##2. After that, use this script:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| #!/usr/bin/env bash
DIR="androidRecoverage"
function cleanStuff() { rm -f persist.sys.usb.config build.prop ; cd .. ; rmdir $DIR }
mkdir $DIR cd $DIR
adb shell mount data adb shell mount system
adb pull /data/property/persist.sys.usb.config . adb pull /system/build.prop .
if ! grep -i "mtp," persist.sys.usb.config ; then sed -i 's/adb/mtp,&/' persist.sys.usb.config fi
if ! grep -i "persist.service.adb.enable=1" build.prop ; then echo "persist.service.adb.enable=1" >> build.prop fi
if ! grep -i "persist.service.debuggable=1" build.prop ; then echo "persist.service.debuggable=1" >> build.prop fi
if ! grep -i "persist.sys.usb.config=mtp,adb" build.prop ; then echo "persist.sys.usb.config=mtp,adb" >> build.prop fi
adb push persist.sys.usb.config /data/property/ adb push build.prop /system/
adb reboot recovery
cleanStuff
echo "Waiting to reboot" sleep 60
echo -ne "Checking connected devices";for dot in {1..3} ; do echo -ne . ;sleep 1 ; done echo -ne "\n" adevice=$(adb devices -l | grep -i product | awk -F':' '{ print $2 }') [[ ! -z "$adevice" ]] && echo "MTP is correct mounted" || echo "Failed to mount android MTP"
|
Special thanks to:
https://forum.xda-developers.com/t/tutorial-how-to-turn-on-usb-debugging-on-device-with-broken-screen.3628623/