Code Monkey home page Code Monkey logo

adbmanager's Introduction

ADBManager

Windows Forms applications written in Visual Basic to run some basic ADB commands from a GUI.

Usage

Download the latest release and extract the archive in an empty folder, then run ADBManager.exe. The application will start with the following screen:

adb

adb commands

  • List connected devices > adb devices
  • Open shell > adb shell
  • Reboot > adb reboot
  • Reboot to recovery > adb reboot recovery
  • Reboot to fastboot > adb reboot bootloader
  • Record screen > adb shell screenrecord /sdcard/%name%.mp4 (%name% is the filename; max. 3 minutes due to adb limitations)
  • Copy file to device > adb push -a %source% %dest% (%source% is the source file and %dest% is the destination path)
  • Copy file to PC > adb pull -a %source% %dest% (same as the above)
  • Connect over network > adb connect %ip%:5555 (%ip% is the IP address of your device; you have to connect your device via USB, run adb tcpip 5555, disconnect the device and click on the button)
  • Disconnect from network > adb disconnect
  • Install APK file > adb install %apk% (%apk% is the APK file path)
  • Terminate ADB > adb kill-server
  • Grab a logcat > adb logcat %file%.txt (%file% is the logcat file path)
  • Sideload a package > adb sideload %zip% (%zip% is the zip file path)

fastboot commands

  • List connected devices > fastboot devices
  • Check bootloader status > fastboot oem device-info
  • Flash an image > fastboot flash %part% %img% (%part is the partition and %img% is the image path)
  • Boot an image > fastboot boot %boot% (%boot% is the image path)
  • Reboot > fastboot reboot

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.