How to Bypass FRP with ADB at Commands

Here we’ll learn how to bypass FRP using ADB Commands. ADB Commands are used to remove FRP. These tools are lightweight and work quickly. Most people prefer the ADB Commands tool because it removes FRP with just a few commands.

About ADB Commands

ADB (Android Debug Bridge) is a powerful and lightweight command-line tool that helps Android developers and technicians communicate with the device. Here’s what you can do with this tool:

  • Control the phone with commands
  • Install and uninstall any application
  • Get permission to access Android system files
  • Perform debugging

The immense capabilities of this lightweight tool are the reason mobile technicians use it to remove FRP.

ADB Commands Tool: Download

What is FRP Lock?

Factory Reset Protection (FRP) is an Android security system. This security feature can be found on all Android devices. If you own an Android phone, you’ve likely heard of it.

When a phone is logged in with a Google account and then formatted or factory reset, the device automatically locks itself with the old email address. To unlock it, you must log in with your old email address and password. If, for some reason, the user forgets the email address and password, this becomes a problem, and this is what we call an FRP Lock.

There are several ways to solve this problem. We can also use the ADB Commands Tool. This is a very simple method. First, this tool is completely free and lightweight. FRP is bypassed using commands in the ADB tool.

Bypass FRP with ADB at Commands

How to Bypass FRP Using ADB Commands

Here, we will walk through a step-by-step process explaining how to remove FRP using ADB commands.

  • First, you need to download the ADB Commands Tool and install it on your system.
  • Now, connect your mobile phone to your computer; ensure that the phone is properly detected.
  • Next, open the ADB Commands Tool.

You can now proceed by executing commands within the tool. We have provided a list of command codes below, which you can utilize. These commands will assist you in bypassing FRP.

ADB CommandMeaning / Use of the Command
adb devicesThis command checks whether the Android device is properly connected to the computer. If the device is detected, its ID will be displayed in the command window.
adb shellThis command opens the Android device shell environment, allowing you to run commands directly on the device.
adb rebootThis command instantly restarts the Android device from the computer.
adb reboot recoveryThis command reboots the device directly into recovery mode.
adb reboot bootloaderThis command restarts the device into bootloader mode.
adb install app.apkThis command is used to install an APK file on the Android device from the computer.
adb uninstall package.nameThis command is used to uninstall a specific application from the Android device using ADB.
adb shell pm list packagesThis command displays the list of all installed packages or applications on the Android device.
adb shell pm clear com.google.android.gsf.loginThis command clears the Google Services Framework login data, which can sometimes affect the FRP verification process.
adb shell pm clear com.android.settingsThis command clears the data of the Android Settings application.
adb shell content insert --uri content://settings/secure --bind name:s:user_setup_complete --bind value:s:1This command marks the Android setup process as completed, which may help skip the setup wizard.
adb shell am start -n com.google.android.gsf.login/This command manually starts the Google login activity on the device.
adb shell am start -n com.android.settings/.SettingsThis command opens the Android Settings application directly from ADB.
adb shell settings put global device_provisioned 1This command marks the device as provisioned, which may allow the setup wizard to be skipped.
adb shell settings put secure user_setup_complete 1This command marks the user setup process as completed on the device.

The command provided above is used to bypass FRP. We have also included the meaning of the command alongside it.

Conclusion

If your device has become locked by an FRP lock and you are looking for a lightweight, simple tool, then this ADB Commands Tool is going to be the best choice for you. This is because it is a lightweight tool that is free of unnecessary complications and can be used completely free of charge. While this tool is typically available on your computer, several more advanced and helpful tools have emerged on the internet—links to which we have provided here.

Leave a Comment