diff --git a/data/adbLearning.md b/data/adbLearning.md index f6cfd74..3ed360c 100644 --- a/data/adbLearning.md +++ b/data/adbLearning.md @@ -2,10 +2,13 @@ [Command](https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/windows-commands) | Description ------- | -------- +`adb --version` | View adb version `adb devices` | see list of connected devices through adb `adb connect :` | connect devices through ip `adb connect ` | connect devices through USB `adb kill-server`| disconnect all connected devices +`adb start-server` | adb restart server +`adb usb` | Restarting the USB Mode `adb logcat` | show device log `adb logcat -c` | clear all logs in adb terminal `adb logcat > .` | store device log into a file @@ -14,7 +17,13 @@ `adb -s uninstall ` | Uninstall the device app `adb shell pm uninstall -k --user 0 ` | Forcefully uninstall `adb -s reboot` | restart device -`pm list packages \| grep ` | adb show app list under a specific packages +`adb shell pm list packages` | Show all install packages in your system +`adb shell pm list packages \| findstr `
or
`adb shell pm list packages \| grep ` | adb show app list under a specific packages +`adb shell getprop` | get connected system properties +`adb shell getprop ro.build.version.release`| Get Device Android version +`adb shell getprop ro.build.version.sdk`| Get Device SDK version +`adb shell getprop ro.serialno` | get serial number +`adb shell getprop \| findstr ro.product` | Get all product information `adb shell input text ""` | Input text from remote device `adb remount`| put `/system` partition in writable mode. By default `/system` is only readable. It could only be done on rooted device. Media Configuration |