How to reset patter lock, password lock, pin lock on any android device ?

Forgot Pattern Lock , Pin and Password ?


Don't Worry Just Follow these steps:

1. Install Drivers for your device, you can find this on the internet. (Universal adb drivers)

2. Download,  Install then Run  Moborobo.

3. Download and extract ADB Tools then copy and paste it on C: Drive

    (Note: You can also download the latest version from the internet)

4. Now open Command Prompt by typing cmd on run (Ctrl+R).


Now, Do the Below Methods:

Method 1:

Type (Note: If device is connected we will see a # symbol after Adb shell ) 

adb shell (Press Enter)

Then Type,

rm /data/system/gesture.key (Press Enter)

If you have a password and not a pattern:

replace gesture.key To password.key

  • Now Reboot Device
  • Draw any pattern device will be unlocked, later we can change the pattern in security settings.

OR

Method 2:

Type (Note: If device is connected we will see a # symbol after Adb shell ) 

adb shell (Press Enter)

Then,

cd /data/data/com.android.providers.setting­s/databases 

sqlite3 settings.db (Press Enter)

After that,

update system set value=0 where name='lock_pattern_autolock';

update system set value=0 where name='lockscreen.lockedoutpermanently';
.quit
  • Now Reboot Device
  • Draw any pattern device will be unlocked, later we can change the pattern in security settings.