Win10 配置安装ADB教程总结20200514 https://zhuanlan.zhihu.com/p/140828682
小米 adb 驱动_ADB禁用系统应用 https://blog.csdn.net/weixin_42206399/article/details/113410752
小米手机ADB删除系统应用去广告
https://www.jianshu.com/p/63b2d2d39260
手动关闭广告
https://zhuanlan.zhihu.com/p/92295731
小米应用名称
http://www.mz6.net/news/android/13948.html
下载adb
地址 dl.google.com/android/repository/platform-tools-latest-windows.zip
下载完后不需要配置环境变量,cd到该文件夹下运行即可
进入开发者模式且允许USB调试
设置——我的设备——全部参数——一直点击“MIUI版本”
设置——更多设置——开发者选项——USB调试
adb命令
显示所有应用名称 adb shell pm list packages -s
卸载 adb shell pm uninstall --user 0 应用包名
重新启用 adb shell pm enable 应用包名
禁用 adb shell pm disable-user 应用包名
我所卸载的
adb shell pm uninstall –user 0 com.miui.systemAdSolution(小米系统广告解决方案,必删)
adb shell pm uninstall –user 0 com.miui.analytics(小米广告分析,必删)
adb shell pm uninstall –user 0 com.miui.player (小米音乐)
adb shell pm uninstall –user 0 com.miui.video (小米视频)
adb shell pm uninstall –user 0 com.miui.voiceassist (语音助手)
我所禁用的(禁用后桌面也看不到了,重新启用可以恢复)
adb shell pm disable-user com.android.browser (浏览器)
设置默认应用
安全中心——应用管理——右上角展开——默认应用设置
我安装了简单搜索与酷狗新概念版作为默认应用
CMD
cd D:\SoftWare\ADB\platform-tools_r31.0.3-windows\platform-tools
D:
adb shell pm list packages -s 出来所有应用,表明连接成果
adb shell pm uninstall --user 0 com.miui.systemAdSolution(小米系统广告解决方案,必删)
adb shell pm uninstall --user 0 com.miui.analytics(小米广告分析,必删)
adb shell pm uninstall --user 0 com.miui.player (小米音乐)
adb shell pm uninstall --user 0 com.miui.video (小米视频)
adb shell pm uninstall --user 0 com.miui.voiceassist (语音助手)
adb shell pm uninstall --user 0 com.android.browser (浏览器)
adb shell pm uninstall --user 0 com.mipay.wallet(钱包)
adb shell pm uninstall --user 0 com.xiaomi.gamecenter.sdk.service(游戏服务)
---
adb shell pm uninstall --user 0 com.miui.screenrecorder(屏幕录制)
adb shell pm uninstall --user 0 com.miui.virtualsim(全球上网)
adb shell pm uninstall --user 0 com.miui.gamecenter(游戏中心)
adb shell pm uninstall --user 0 com.android.email (电子邮件)
adb shell pm uninstall --user 0 com.android.vending(谷歌商店)
打开小爱同学,说关闭广告
逐个打开关闭广告:系统安全,天气,日历,主题,音乐,小米视频,阅读,应用商店
如何重置手机电量显式
https://blog.csdn.net/Bleen1009/article/details/50439886
https://www.jb51.net/shouji/225637.html