From 9c297315fe07394a6c7c65c60f3ee441c9855861 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Fri, 17 Sep 2021 14:59:36 -0700 Subject: [PATCH] Show enabled and disabled packages separately. --- adb_ls.bat | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/adb_ls.bat b/adb_ls.bat index 837d6b5..431af36 100644 --- a/adb_ls.bat +++ b/adb_ls.bat @@ -1 +1,11 @@ -adb shell pm list packages -f +@echo off + +echo ENABLED +echo ======= +adb shell pm list packages -e | sorted !i + +echo. + +echo DISABLED +echo ======== +adb shell pm list packages -d | sorted !i