C c000 Member Dec 27, 2011 10 0 0 Nov 28, 2014 #1 how do I save build.prop to my computer? I am trying to make an exact copy of it and have it saved to my computer, but I can't find any tutorial on how to do this. Is there some adb commands that I can use?
how do I save build.prop to my computer? I am trying to make an exact copy of it and have it saved to my computer, but I can't find any tutorial on how to do this. Is there some adb commands that I can use?
Rukbat Retired Moderator Feb 12, 2012 44,533 44 48 Nov 29, 2014 #2 Re: how do I save build.prop to my computer? adb pull /path/to/build.prop c:\wherever\you\want\it You'll probably have to be running as root, so if you aren't already when you run that, make it adb su pull /path/to/build.prop c:\wherever\you\want\it Upvote 0 Downvote
Re: how do I save build.prop to my computer? adb pull /path/to/build.prop c:\wherever\you\want\it You'll probably have to be running as root, so if you aren't already when you run that, make it adb su pull /path/to/build.prop c:\wherever\you\want\it