风过无痕,生命如烟

每个人生下来都是天使,不过这个世界上也存在着恶魔。恶魔是天使变的,因为这个世界充满了诱惑。

导航

VS2015调试UWP程序时提示错误DEP0700 : Registration of the app failed. Another user has already installed

在同一台windows10电脑上调试过一个工程以后,切换了账号再次调试出现错误

DEP0700 : Registration of the app failed. Another user has already installed a packaged version of this app. An unpackaged version cannot replace this. The conflicting package is {{{PackageName}}} and it was published by CN={{{Certificate Stuff}}}. (0x80073cf9)

 

没有打包的程序已经被另外一个用户安装过,无法再次安装。google后解决方案如下

http://stackoverflow.com/questions/13865930/how-to-uninstall-an-app-that-another-user-installed

 

切换到原来的用户

管理员模式下运行power shell

执行get-appxpackage -all命令

找到程序对应的完整称PackageFullName

然后运行命令remove-appxpackage <PackageFullName>

再调试就可以了

posted on 2016-08-04 18:10  hyamw  阅读(590)  评论(0编辑  收藏  举报