停用
adb shell pm disable-user <package>
启用
adb shell pm enable <package>
卸载
adb shell pm uninstall [-k] [--user USER_ID] <package>
-k 卸载应用且保留数据与缓存,如果不加 -k 则全部删除。
–user 指定用户 id,Android 系统支持多个用户,默认用户只有一个,id=0。
示例:
C:\Users\Admin>adb shell pm disable-user com.vivo.browser
Package com.vivo.browser new state: disabled-user
C:\Users\Admin>adb shell pm enable com.vivo.browser
Package com.vivo.browser new state: enabled
C:\Users\Admin>adb shell pm uninstall –user 0 com.vivo.browser
Success
发表回复