Lowers

Super Moderator
Joined
Oct 23, 2011
Posts
647
Likes
1
android driver solution and adb commandline for unsuported android models

there is a age of android devices and lot of problem comes with android driver's
so here is solution for android driver's


what do you need for making driver slution
1. google driver package
2. device in hand in on condition
3.little brain

just need to download driver package
*(all needed link attached in last of this tut )
open rar package and extract in somewhere
open folder it will look like
pic8br.jpg

open google winusb.ini file with notepad

it will look like
pic12mo.jpg


now
go to desktop and right click on mycomputer then select manage
pic3pe.jpg


now click on device manager
pic4cm.jpg


turn on device(phone\tab) and connect to pc using usb cable
notice that new device founded by pc in device manager
right click on new founded device and select property
pic5gd.jpg

switch to detail
select hardware ids from drop down property menu

copy first hardware id
pic11cc.jpg



replace copied hardware id with any %CompositeAdbInterface% on opened inf file in notepad
pic12mo.jpg


now copy second hardware id from device property
replace copied hardware id with any %SingleAdbInterface% on opened inf file in notepad

pic10v.jpg

pic9h.jpg



after changed in my file it will looking like
pic14k.jpg


save the file and close it


switch to device manager
select device and rigght click on device and select update driver
select "Browse my computer for driver software"
pic16c.jpg


select android_winusb.ini by using browse button click next and take a rest your device driver is now installed

pic17vl.jpg

pic18g.jpg
 

Lowers

Super Moderator
Joined
Oct 23, 2011
Posts
647
Likes
1
now if you have android device in hand and it' unsuported by any tool and it's locked with user code or pattern ...want to use adb commandline read till end
(imp*.. usb debugging must be enable without usb debugging adb can't able to do anything )

first you need to adb exe
download this

or if you are just a advance user so you can download full android sdk

turn on device and connect to pc
install proper android driver
open cmd(ms-dos)
pic1rf.jpg

pic2hj.jpg


switch to adb.exe contain folder using cd command
or just copy path of folder which have adb.exe inside
type cd and paste path of folder
pic19q.jpg


type adb.exe

pic20rl.jpg


type adb devices
it will show all android connect device in pc
pic21b.jpg



type


adb shell
if you get "$" sign in cmd that's mean your device is not rooted you need to root device first
or do alternate method for revive
type


exit
adb reboot recovery


it will reboot phone in recovery mode there you can wipe\format phone by hard key's


if you get "#" in cmd then you can proceed to next stap
type


wipe data
when wiping done
then type


exit
adb reboot


it will reboot your device in normal way with removed lock without any risk of brick device

imp note: it will work for al android device (no matter with cpu)
 
Top