windows-store-apps – 在Windows应用商店或通用应用中注册应用失败错误

执行 Windows应用商店或通用项目时,Visual Studio显示以下错误

Error 1 Error : DEP0700 : Registration of the app Failed. Another user has already installed an unpackaged version of this app. The current user cannot replace this with a packaged version. The conflicting package is dff9bf13-e639-46ad-a6ed-61b27be58eed and it was published by CN=owais. (0x80073cf9) tiles

解决方法

您可能正在尝试在已安装的计算机上安装应用程序.也许您在开发期间安装了一次,现在尝试从另一个帐户或使用其他部署方法安装它.

有几种方法可以解决这个问题.

最佳方法删除已安装的应用程序,例如使用Powershell Remove-AppxPackage并指定包,然后尝试重新安装.

另一种方法:更改您尝试安装的应用程序的Package.appxmanifest中的包名称,编译并重新安装.

例:

<Package ...>
   <Identity Name="5a0c511a-fdfd-4417-80b8-2bedbf437971" ...>

改成:

<Package ...>
   <Identity Name="5a0c511a-fdfd-4417-80b8-SomethingElse" ...>

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...