How to uninstall an app that another user installed?

前端 未结 13 480
时光取名叫无心
时光取名叫无心 2020-12-02 09:24

I keep hitting this problem when I try to debug my Windows 8 apps and there is a copy already installed on another user account:

DEP0700 : Registratio

相关标签:
13条回答
  • 2020-12-02 09:57

    This is similar to some other answers, especially @Pavel Nazarov's, but works for different users. And it's different from the accepted answer because you don't need to install any programs.

    In Windows Powershell in admin mode, run:

    get-appxpackage -all | where name -eq "{{ App Name }}" | remove-appxpackage

    0 讨论(0)
提交回复
热议问题