Hi One of the biggest problems with Android Enterprise in this use case is actually knowing what the identifiers actually are of the preinstalled apps This can be achieved using adb and the following command: adb shell pm list packages | awk -F ":" '{print $2}' Once you've got the list of apps, you can then use the Android System Apps payload:
... View more