Many users confuse suspend and disable. The extended key here is the behavior flag:

Extended command:

adb shell pm suspend --user 0 com.android.chrome

The --user 0 flag is the critical extended key for multi-user scenarios.

adb shell input keyevent 26

Android is a multi-user system. The --user flag is arguably the most essential extended key. By default, commands target the primary user (ID 0). However, work profiles, guest accounts, and secondary users have IDs 10, 11, etc.

Example:

adb shell pm list packages --user 10

This lists only apps installed in the work profile. Combining --user with disable/suspend allows per-profile app control.

Extended Key Usage: --user ALL to affect every profile simultaneously.

adb shell input keyevent 23