需要注意的:卸载或禁用未知App可能会导致手机无法开机或触屏失效等故障。
需要安装 ADB 和 开启手机 USB 调试,参考这篇文章:
有禁用和卸载两个方法选其一:
方法一:禁用App
adb shell pm disable-user 软件包名
如果错误禁用了App,可以用下面的命令重新启用:
adb shell pm enable 软件包名
方法二:卸载App
adb shell pm uninstall --user 0 软件包名
adb shell pm install-existing --user 0 软件包名
卸载的App只是从用户 0 卸载,多数被卸载App在手机存储上还是存在的,但不会占用手机的内存和 CPU 资源。
下面是 vivo Z5 可以卸载的App,根据你的需要编辑下面的内容,可以把下面的内容保存为批处理文件执行:
:: 电子书,好像被彻底删除了? adb shell pm uninstall --user 0 com.chaozh.iReader :: i音乐 adb shell pm uninstall --user 0 com.android.bbkmusic :: 互传 adb shell pm uninstall --user 0 com.vivo.easyshare :: vivo 互传 adb shell pm uninstall --user 0 com.vivo.share :: 推送引擎 adb shell pm uninstall --user 0 com.vivo.pushservice :: vivo 游戏: 好像被彻底删除了? adb shell pm uninstall --user 0 com.vivo.game :: 游戏魔方: adb shell pm uninstall --user 0 com.vivo.gamecube :: GameWatch: adb shell pm uninstall --user 0 com.vivo.gamewatch :: 钱包: adb shell pm uninstall --user 0 com.vivo.wallet :: 官网: adb shell pm uninstall --user 0 com.vivo.space :: 快应用: adb shell pm uninstall --user 0 com.vivo.hybrid :: google play 服务: adb shell pm uninstall --user 0 com.google.android.gms :: google play 服务更新程序: adb shell pm uninstall --user 0 com.android.vending :: 全局搜索: adb shell pm uninstall --user 0 com.vivo.globalsearch :: 快捷中心: adb shell pm uninstall --user 0 com.vivo.shortcutcenter :: 浏览器: adb shell pm uninstall --user 0 com.vivo.browser :: 用户体验改进计划服务: adb shell pm uninstall --user 0 com.bbk.iqoo.logsystem :: vivo TWS: 无线耳机 adb shell pm uninstall --user 0 com.android.vivo.tws.vivotws :: 云服务: adb shell pm uninstall --user 0 com.bbk.cloud :: 搜索挂件,好像被彻底删除了? adb shell pm uninstall --user 0 com.vivo.puresearch :: 应用商店: adb shell pm uninstall --user 0 com.bbk.appstore
原文链接:https://blog.csdn.net/fhw_bin_dl/article/details/121474064?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522165277698816781683995539%2522%252C%2522scm%2522%253A%252220140713.130102334.pc%255Fblog.%2522%257D&request_id=165277698816781683995539&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~blog~first_rank_ecpm_v1~times_rank-18-121474064-null-null.nonecase&utm_term=vivo
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END