Ms office Office 2013应用发布未在“共享文件夹”中的应用中列出

Ms office Office 2013应用发布未在“共享文件夹”中的应用中列出,ms-office,office-2013,Ms Office,Office 2013,我正试图通过在网络共享上发布来创建Office 2013应用程序。为此,我创建了以下清单文件 <?xml version="1.0" encoding="utf-8"?> <OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ver="http://schemas.

我正试图通过在网络共享上发布来创建Office 2013应用程序。为此,我创建了以下清单文件

 <?xml version="1.0" encoding="utf-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.0"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:ver="http://schemas.microsoft.com/office/appforoffice/1.0"
xsi:type="ContentApp">
  <Id>df5b5660-84ce-11e1-b0c4-0800200c9a66</Id>
  <AlternateId>en-US\WA123456789</AlternateId>
  <Version>1.0.0.0</Version>
  <ProviderName>Microsoft</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="Sample content app" />
  <Description DefaultValue="Describe the features of this app." />

  <Hosts>
     <Host Name="Presentation" />
     <Host Name="Excel" />
  </Hosts>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://www.bing.com" />
    <RequestedWidth>400</RequestedWidth> 
    <RequestedHeight>400</RequestedHeight>
  </DefaultSettings>
  <AllowSnapshot>true</AllowSnapshot>
</OfficeApp>
然后我在可信应用程序目录中添加了条目

但我无法在列表中看到我的应用程序


请告诉我我在这里做错了什么。

我发现Microsoft发布了一个service pack,需要更新版本的清单,下面是工作清单

<?xml version="1.0" encoding="utf-8"?>
<OfficeApp 
  xmlns="http://schemas.microsoft.com/office/appforoffice/1.1" 
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  xsi:type="ContentApp">
  <Id>01eac144-e55a-45a7-b6e3-f1cc60ab0126</Id>
  <AlternateId>en-US\WA123456789</AlternateId>
  <Version>1.0.0.0</Version>
  <ProviderName>Microsoft</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="Sample content app" />
  <Description DefaultValue="Describe the features of this app." />
  <IconUrl DefaultValue="https://contoso.com/ENUSIcon.png" />
  <Hosts>
    <Host Name="Workbook" />
    <Host Name="Presentation" />
  </Hosts>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://www.bing.com" />
    <RequestedWidth>400</RequestedWidth> 
    <RequestedHeight>400</RequestedHeight>
  </DefaultSettings>
  <AllowSnapshot>true</AllowSnapshot>
</OfficeApp>