Add-in warning: license information missing or expired

I am getting the following error in an Office Excel add-in that I developed using office.js only on some machines.

Our add-on is free. I also found several people complaining about this behavior for their free addons . This behavior appears to be visible on multiple client machines.

enter image description here

My manifest file:

<?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" 
    xmlns:bt="http://schemas.microsoft.com/office/officeappbasictypes/1.0" 
    xmlns:ov="http://schemas.microsoft.com/office/taskpaneappversionoverrides" xsi:type="TaskPaneApp">
    <Id>masked</Id>
    <Version>1.0.0.0</Version>
    <ProviderName>Invensys Systems Inc.</ProviderName>
    <DefaultLocale>en-US</DefaultLocale>
    <DisplayName DefaultValue="Configuration Assistant for Wonderware Online" />
    <Description DefaultValue="Execute administrative tasks against your Wonderware Online InSight subscription."/>
    <IconUrl DefaultValue="https://online.wonderware.com/TagAdministrator/Images/icon-administrator-x32.png"/>
    <SupportUrl DefaultValue="https://www.wonderware.com/contact/contact-support ">
        <Override Locale="en-US" Value="https://www.wonderware.com/contact/contact-support " />
    </SupportUrl>
    <AppDomains>
        <AppDomain>https://wonderware.auth0.com</AppDomain>
    </AppDomains>
    <Hosts>
        <Host Name="Workbook" />
    </Hosts>
    <Requirements>
        <Sets DefaultMinVersion="1.2">
            <Set Name="ExcelApi" />
        </Sets>
    </Requirements>
    <DefaultSettings>
        <SourceLocation DefaultValue="https://online.wonderware.com/TagAdministrator/" />
    </DefaultSettings>
    <Permissions>ReadWriteDocument</Permissions>
</OfficeApp>

      

My adds from the Office Store

+3


source to share





All Articles