Pc Mobile Tablet Blog

Huge Drivers Collection For Pc, Mobile, Tablet, Laptop

Sunday, August 17, 2014

How to Unlock Pattern Locked Android Smartphone with ADB Commands?

Android tips
Most probably everyone might face the situation of getting Android device locked or it’s just freezing quite a lot. There are many easy solutions right from removing its battery, manual resetting  and using backup options such as sky drive and much more. But what if your device does not starts itself? Or it is locked with multiple attempts? Or it may be with some other reason. Again if you have no Wi-Fi ON or your device is in airplane mode or not set to internet accessibility.
Android Smartphone Locked

Answer is using windows based commands to operate your Android device to resolve this issue.

Method: Using ADB (Android Debug Bridge) Commands
ADB is advance command line tool which enables user to communicate with Android device using commands on pc.

Requirements:
1. Windows PC
2. Device with USB cable
3. Android SDK developer toolkit (Click here to get from Android Developer Website)
4. Usb drivers for your device, or if your device is recognizing self then it’s not required
If this does not list your device then try to go on your device's company's website or Google your device with "device name android usb drivers for windows", (Click here to get from Developer Website)
5. Proper command follow-up
Unzip downloaded Android SDK files on your pc. Go to unzipped SDK folder and follow this path
"android-sdk_r07-windowsandroid-sdk-windowstools"
Just click adb.exe file to install the program, it shows a small window and it disappears immediately. Don't worry, its done.
Click Start>Run>cmd. This will take you to dos-based windows command prompt window.
Type cd "android-sdk-windowstools"
You must be now in the ADB folder.
In the came command window type "adb devices"
If it shows the device then you are on correct path. If not, you probably need your phone's driver set to install in computer.
Now you must be ready to do work on your Android device, such as backup, flashing, resetting, hard-resetting.
Above method is discussed considering your Android device is locked with multiple pattern password attempts. So we will move further to run few more commands to unlock it in easy ways.
In cmd type in following set of commands
adb devices (This will show your device)
adb shell
cd/data/data/com.android.providers.settings/databases
sqlite3 settings.db
update system set value=0 where name='lock_pattern_autolock';
update system set value=0 where name='lockscreen.lockedoutpermanently';
.quit
Now reboot your device. With this your phone must be unlocked.
If above codes does not work then try below
adb shell rm/data/system/gesture.key
This will remove any pattern kept on your device and you will need to input new pattern.
Note: If you do not wish someone else to use ADB commands on your smartphone in any way then go to your smartphone's security options and select the option saying keep off USB debugging mode. But this is very risky as you do not need to worry so much about your smartphone as it is not a question of National Security.

Don't Forget To Say Thanks In Comment http://pcmobtab.blogspot.com

No comments:

Post a Comment