adb指令禁用软件_MIUI系统adb指令禁用系统应用
所谓假性卸载,就是系统更新后还会出现被卸载软件,但是能让软件被禁用就足够了
首先打开设置
在我的设备中选择全部参数,连续按MIUI版本,直到显示进入开发者模式
然后在更多设置中找到开发者选项。
将手机连接电脑,并打开USB调试选项,如果提示配对选择允许。
电脑这块儿。windows系统可以百度adb安装。我用的Ubuntu。
首先命令行
apt-get install adb
安装adb工具
安装成功后
adb devices
查看连接设备jcf@jcf-virtual-machine:~$ adb devices
List of devices attached
* daemon not running; starting now at tcp:5037
* daemon started successfully
1d3a582eunauthorized
adb shell pm list packages
显示所有安装应用
浏览器的应用名为com.android.browser
输入adb shell pm uninstall -k --user 0 com.android.browser
jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.android.browser
Success
打开手机,找不到系统浏览器了,啊哈哈哈
一口气卸载了小米视频,小米音乐,小米钱包,小爱同学jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.miui.video
Success
jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.miui.player
Success
jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.mipay.wallet
Success
jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.miui.voiceassist
Success
jcf@jcf-virtual-machine:~$
所谓假性卸载,就是系统更新后还会出现被卸载软件,但是能让软件被禁用就足够了 首先打开设置 在我的设备中选择全部参数,连续按MIUI版本,直到显示进入开发者模式 然后在更多设置中找到开发者选项。 将手机连接电脑,并打开USB调试选项,如果提示配对选择允许。 电脑这块儿。windows系统可以百度adb安装。我用的Ubuntu。 首先命令行 apt-get install adb 安装adb工具 安装成功后 adb devices 查看连接设备jcf@jcf-virtual-machine:~$ adb devices List of devices attached * daemon not running; starting now at tcp:5037 * daemon started successfully 1d3a582eunauthorized adb shell pm list packages 显示所有安装应用 浏览器的应用名为com.android.browser 输入adb shell pm uninstall -k --user 0 com.android.browser jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.android.browser Success 打开手机,找不到系统浏览器了,啊哈哈哈 一口气卸载了小米视频,小米音乐,小米钱包,小爱同学jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.miui.video Success jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.miui.player Success jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.mipay.wallet Success jcf@jcf-virtual-machine:~$ adb shell pm uninstall -k --user 0 com.miui.voiceassist Success jcf@jcf-virtual-machine:~$