简体   繁体   English

adb 失败 [DELETE_FAILED_INTERNAL_ERROR]

[英]adb Failure [DELETE_FAILED_INTERNAL_ERROR]

I'm dealing with a pretty major malware issue on an Elite 6.0L+ Sky Device.我正在处理 Elite 6.0L+ Sky 设备上的一个非常严重的恶意软件问题。 I'm working with a fellow from the malware bytes forums trying to get it cleaned out.我正在与恶意软件字节论坛的一位同事合作,试图将其清除。 I'm trying to uninstall a few apps through adb via command prompt but it's throwing errors.我正在尝试通过命令提示符通过 adb 卸载一些应用程序,但它会引发错误。

adb pm shell pm uninstall com.wouzee.hispanopost 

That command throws the error:该命令引发错误:

Failure [DELETE_FAIL_INTERNAL_ERROR]失败 [DELETE_FAIL_INTERNAL_ERROR]

If I try it as如果我尝试作为

    adb pm shell -k --user 0 uninstall com.wouzee.hispanopost 

Then is throws: Failure [no installed for 0]然后抛出:Failure [no installed for 0]

I have managed to uninstall other things using these commands but the two things I've been told to remove both throw these same errors when I try to remove them.我已经设法使用这些命令卸载了其他东西,但是当我尝试删除它们时,我被告知要删除的两件事都会引发这些相同的错误。

Does anyone have any idea how to get around this?有谁知道如何解决这个问题?

I was having the same problem uninstalling with:我在卸载时遇到了同样的问题:

adb shell

pm uninstall <package>

This is what worked for me eventually:这最终对我有用:

adb shell

pm uninstall --user 0 <package>

Some Apps are prevented from uninstalling.某些应用程序被阻止卸载。 You can disable them instead.您可以改为禁用它们。 Use following command on adb shell:在 adb shell 上使用以下命令:

pm disable-user --user 0 <package>

就我而言,我尝试使用adb uninstall bundleID卸载package ,但设备根本没有安装package

Here is my solution, I uninstall some system apps come up with [DELETE_FAIL_INTERNAL_ERROR] too这是我的解决方案,我卸载了一些系统应用程序也出现了 [DELETE_FAIL_INTERNAL_ERROR]

  1. use adb shell su to enter shell mode使用adb shell su进入 shell 模式
  2. then using pm uninstall --user 0 <your-pkg-name> to uninstall然后使用pm uninstall --user 0 <your-pkg-name>卸载

PS: if only use adb shell my situation will generate error too, the su is the key to solve problem PS:如果只使用adb shell我的情况也会报错, su是解决问题的关键

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 失败 [INSTALL_FAILED_UPDATE_INCOMPATIBLE] 后跟 DELETE_FAILED_INTERNAL_ERROR - Failure [INSTALL_FAILED_UPDATE_INCOMPATIBLE] followed by DELETE_FAILED_INTERNAL_ERROR DELETE_FAILED_INTERNAL_ERROR 安装 APK 时出错 - DELETE_FAILED_INTERNAL_ERROR Error while Installing APK 应用程序无法在设备上运行:DELETE_FAILED_INTERNAL_ERROR? - Application will not run on device: DELETE_FAILED_INTERNAL_ERROR? android - DELETE_FAILED_INTERNAL_ERROR 安装时出错 - android - DELETE_FAILED_INTERNAL_ERROR Error while Installing 无法安装我的应用,但出现DELETE_FAILED_INTERNAL_ERROR这个错误 - Cannot install my app getting DELETE_FAILED_INTERNAL_ERROR this error adb 卸载失败失败 [DELETE_FAILED_OWNER_BLOCKED] - adb uninstall failed Failure [DELETE_FAILED_OWNER_BLOCKED] 错误:ADB 退出,退出代码为 1 执行流式安装 adb:安装失败...\app.apk:失败 [INSTALL_FAILED_INSUFFICIENT_STORAGE] - Error: ADB exited with exit code 1 Performing Streamed Install adb: failed to install ...\app.apk : Failure [INSTALL_FAILED_INSUFFICIENT_STORAGE] 错误:ADB 以退出代码 1 退出失败 [INSTALL_FAILED_VERSION_DOWNGRADE] - Error: ADB exited with exit code 1 Failure [INSTALL_FAILED_VERSION_DOWNGRADE] 尝试使用 adb 为平台 4.1 安装 android apk package 时失败 [INSTALL_FAILED_CONTAINER_ERROR] - Failure [INSTALL_FAILED_CONTAINER_ERROR] when trying to install android apk package using adb for platform 4.1 &#39;adb转发内部错误是什么意思? - What does 'adb forward internal error mean?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM