使用ADB从shell取消安装应用程序

时间:2017-04-18 22:22:24

标签: android shell adb

我已经使用ADB将smarthpone(rooted)连接到PC(Linux)。 Eveything工作正常,除了我无法从shell中取消所有应用程序。我试过了:

adb unistall com.mirsoft.passwordmemory
adb unistall -k com.mirsoft.passwordmemory

我收到帮助消息作为回复。 我也试过了:

adb shell pm unistall com.mirsoft.passwordmemory
adb shell pm unistall -k com.mirsoft.passwordmemory

获得回报

Error: unknown command 'unistall'

后跟帮助消息

其他命令工作正常。 难道我做错了什么?

2 个答案:

答案 0 :(得分:1)

uninstalln之后有一个i。使用adb uninstall com.mirsoft.passwordmemory

答案 1 :(得分:1)

您也可以尝试使用rm命令卸载:

adb shell rm com.mirsoft.passwordmemory

通常不会忘记授予超级用户权限的su命令。