> adb uninstall com.dev2qa.example Success 2.2 Use ADB Shell Command. :) One of these commands lets you install apps on your Android device right from a Terminal or Command Prompt window on your computer. Double click on the app you want to remove and tap the Apply button. $ adb shell pm list packages To list only the system packages, use the “ -s ” option. However, if you can not find the system app in the Play Store, then you can use the ADB command below to get a list of all installed apps on your device. adb shell pm list packages -f > b:\1.txt. Any idea how to do the same in Windows 10? As such, you may not find your newly installed apps where you’d exect to; in the menu. -f: see their associated file Android PackageManager class is used for retrieving various kinds of information related to the application packages that are currently installed on the device. This gives you an uninstall for everything that's installed; cut and paste to adjust: adb shell 'pm list packages -f' | sed -e 's/. *://' | sort | while read -r line; do echo $''$line$'
'; done; echo $'