pm卸载-K -user 0失败[delete_failed_user_rentered]
我一直在按照 https://www.xda------www.xda----- developers.com/disable-system-app-bloatware-andy/ 要删除Bloatware(实际上杀死了FCM并封锁通知。
但是我遇到了故障[DELETE_FAILED_USER_REDRACTIADS]。我已经检查了当前的用户到AM Get-Get-Get-Get-Get-Get-Get-0是0当前使用者,据我所知,它是root用户。 那么,为什么卸载失败?任何日志还是进一步的故障排除提示?非常感谢,因为这导致手机无法正常运行。
PD2170:/ $ pm uninstall -k --user 0 com.iqoo.powersaving
Success
PD2170:/ $ pm list packages | grep pem
package:com.vivo.pem
PD2170:/ $ pm uninstall -k --user 0 com.vivo.pem
Success
PD2170:/ $ pm list packages | grep abe
package:com.vivo.abe
PD2170:/ $ pm uninstall -k --user 0 com.vivo.abe
Failure [DELETE_FAILED_USER_RESTRICTED]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果常规ADB禁用/卸载命令不起作用,则 -
对于Android 13尝试:
对于Android 12尝试:
说明:这是在线上调用函数:134(请参见下面),并将三个参数传递给函数:
com.abc.xyz(数据类型:S16)
0(数据类型:I32)
0(数据类型:I32)
PS:在Vivo/iQOO手机上进行了测试。对于其他品牌,卸载功能的命令号(131/134)取决于解码&将framework.jar文件分解/system/framework/framework.jar
pps:com.vivo.abe& com.vivo.pushservice将不会使用此方法卸载,但是可以删除系统膨胀软件的其余部分。
来源:
If the regular adb disable/uninstall commands do not work then-
For Android 13 try:
For Android 12 try:
Explanation: This is calling the function at line:134 (see more below) and passing three arguments to the function:
com.abc.xyz (datatype: s16)
0 (datatype: i32)
0 (datatype: i32)
PS: This is tested on vivo/iqoo phones. For other brands the command number (131/134) for the uninstall function depends on decoding & decompiling the framework.jar file in /system/framework/framework.jar
PPS: Also com.vivo.abe & com.vivo.pushservice will not uninstall using this method, however the rest of the system bloatware can be removed.
Source: https://dtf.ru/u/523140-danila-romanov/1154461-eshche-odin-sposob-udaleniya-predustanovlennyh-prilozheniy-android-12
某些应用只能通过根系设备上的root删除。
您可以尝试禁用禁用,而不是卸载该应用程序以获取类似结果:
您可以在此处找到完整的指南: https://www.xda-developers.com/disable-system-app-bloatware-android/
Some apps can only be removed by root on a rooted device.
You can try disabling instead of uninstalling the app for similar results:
You can find a full guide here: https://www.xda-developers.com/disable-system-app-bloatware-android/