Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adb Failure [DELETE_FAILED_INTERNAL_ERROR]

Tags:

android

adb

I'm dealing with a pretty major malware issue on an Elite 6.0L+ Sky Device. 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 pm shell pm uninstall com.wouzee.hispanopost 

That command throws the error:

Failure [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]

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?

like image 771
Amelia Avatar asked Feb 03 '26 14:02

Amelia


2 Answers

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>
like image 143
William Mutua Peter Avatar answered Feb 06 '26 04:02

William Mutua Peter


Some Apps are prevented from uninstalling. You can disable them instead. Use following command on adb shell:

pm disable-user --user 0 <package>
like image 26
Sandip Jadhav Avatar answered Feb 06 '26 03:02

Sandip Jadhav



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!