restrictedcapabilities

restrictedcapabilities

本文介绍了[Desktop Converter]部署错误:有更多数据可用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好

我终于实现了将我的msi安装程序转换为appx软件包,但我无法安装它,我得到了以下错误:

I Finally achieved to convert my msi installer to an appx package, however i cannot install it, i get the following error:

Add-AppxPackage:部署失败,HRESULT:0x80073CF6,无法注册包。

AppxManifest.xml(2,2):错误0x800700EA:无法注册test_0.0.0.3_x64__7acsxpahhtcqa包,因为在注册windows.CentennialVReg扩展时遇到

以下错误:可以获得更多数据。

多么有意义的错误...我搜索了日志(Get-AppxLog)但是说同样的事情


What a meaningful error ... I searched for the log (Get-AppxLog) but says the same thing

我找到了https://social.msdn.microsoft.com/Forums/windowsapps/en-US/da89f2ee- 03b6-43ed-aa21-97ef091798c9 / deploy-error-package-could-not-be-registered?forum = WindowsPhonePreviewSDK但这不是我的情况,我没有改变任何东西(但安装了
驱动程序,我从此压制不再适用于appx)

I found https://social.msdn.microsoft.com/Forums/windowsapps/en-US/da89f2ee-03b6-43ed-aa21-97ef091798c9/deploy-error-package-could-not-be-registered?forum=WindowsPhonePreviewSDK but that's not my case, i didn't change anything (but the installation of a driver that i suppress since it's not anymore doable with appx)

AppxManifest.xml的第二行

The second line of the AppxManifest.xml

<套餐

   &NBSP;&NBSP;&NBSP;   xmlns =" http://schemas.microsoft.com/appx/manifest/foundation/windows10"

     xmlns:uap =" http://schemas.microsoft.com/appx/manifest/uap/windows10"

     xmlns:uap2 =" http://schemas.microsoft.com/appx/manifest/uap/windows10/2"

     xmlns:uap3 =" http://schemas.microsoft.com/appx/manifest/uap/windows10/3"

     xmlns:uap4 =" http://schemas.microsoft.com/appx/manifest/uap/windows10/4"

     xmlns:rescap =" http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"

     xmlns:rescap3 =" http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/3"

     xmlns:desktop =" http://schemas.microsoft.com/appx/manifest/desktop/windows10"

     xmlns:desktop2 =" http://schemas.microsoft.com/appx/manifest/desktop/windows10/2"

     xmlns:com =" http://schemas.microsoft.com/appx/manifest/com/windows10"

     xmlns:wincap3 =" http://schemas.microsoft.com/appx/manifest/foundation/windows10/windowscapabilities/3"

     IgnorableNamespaces =" uap4 wincap3 rescap3 desktop2 com">

<Package
        xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
    xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
    xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
    xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
    xmlns:uap4="http://schemas.microsoft.com/appx/manifest/uap/windows10/4"
    xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
    xmlns:rescap3="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities/3"
    xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
    xmlns:desktop2="http://schemas.microsoft.com/appx/manifest/desktop/windows10/2"
    xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
    xmlns:wincap3="http://schemas.microsoft.com/appx/manifest/foundation/windows10/windowscapabilities/3"
    IgnorableNamespaces="uap4 wincap3 rescap3 desktop2 com">

似乎是正确的

感谢您的帮助:)

推荐答案

我找到了这个主题 https://www.computerhope.com/forum/index.php?topic=150607.0

HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\SideBySide

似乎没问题。

任何想法?


这篇关于[Desktop Converter]部署错误:有更多数据可用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 19:33
查看更多