Ads Top

Unlock forgotten android pattern using ADB

Forgotten Pattern Unlock makes Android device usage impossible. The problem may be solved by unlocking the device. In doing so, one employs Android Debug Bridge utility and PC. Anyway, ADB is worth to study. It has lots of specific functions which might be useful in a variety of different circumstances.

Getting ready to disable pattern unlock.
  1. This software is a part of Android SDK. Thus if you decide to install ADB in your PC, first, navigate to the official website to download Android Studio. In case you need just Android Debug Bridge it is enough to load the archive contains platform-tools without installing a full-fledged copy of Android SDK.
  2. You should toggle USB debugging going to the Developer Options on the general settings screen as soon as you buy a device. The problem is the activation this option in attaching your device to PC is impossible without taking a few preliminary steps. Therefore to disable pattern unlock using ADB is not possible.

Instruction to disable pattern unlock.

  1. Connect an Android device to PC, unzip platform-tools archive to any folder;
  2. To start running “Platform-tools” you should open “Platform-tools” folder, press and keep pressing “Shift” button and tap at free space with the other mouse button. You will see pull-down menu. Select “Open command prompt” ;
  3. Then input the code below, submit it by pressing “Enter”:

    The first option:
    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

    The second option:
    adb shellrm /data/system/gesture.key

    The third option:
    adb shell
    su
    rm /data/system/locksettings.db
    rm /data/system/locksettings.db-wal
    rm /data/system/locksettings.db-shm
    reboot

    The fourth option:
    adb shell
    rm /data/system/gesture.key
  4. After performing all steps, reboot your device. Now you can input a new pattern unlock.
Powered by Blogger.