Skip to main content

ADB Login

Installing ADB

  1. Download the ADB installation package and extract it for use (Download Link).
  2. Right-click on "My Computer" > Properties > Advanced system settings > Environment Variables.
  3. In the System Variables section, click "Edit" and add the path to the extracted ADB files.
  4. Click "OK" to save the environment variable changes.

ADB Login

  1. Press Win + R to open the Windows terminal, type CMD, and enter ADB commands to view ADB-related information.

  2. When there is only one device:

    C:\Users\cjw>adb shell
    #
  3. When multiple devices are connected:

    Check the list of connected ADB devices. Execute the command again after connecting or disconnecting devices to confirm the device you wish to connect to.

    C:\Users\cjw>adb devices
    List of devices attached
    103ea97dececc831 device
    d48936ed7d1551fc device

    Login to the development board.

    C:\Users\cjw>adb -s d48936ed7d1551fc shell
    #