Reputation: 291
Our company has deployed excel online but when open office add-in, it shows
This tip is too simple, I don't understand what should I do next.
请从信任中心添加或启用加载项目录 => Please add or enable add-in directory from the trust center.
What is the trust center? I can't find it on Excel Online.
Upvotes: 0
Views: 111
Reputation: 4397
If you want to deploy within your company you can create a shared folder and ask your users to load addin from Shared Folder
. Please follow @Rick Kirkham advise and the link
Depends on the office version and windows build version addin may use IE or Edge browser to load. Then you have to strictly follow @Eugene Astafiev advise and give a try.
I believe in your manifest file you have declared the App domain and the value properly where your addin is serving from. For Example
<AppDomains>
<AppDomain>https://youraddinlocation.com</AppDomain>
</AppDomains>
Note: Add more appdomain entry depends on how Addins fetching data
Then to deploy within a company
Hope it helps.
Upvotes: 1
Reputation: 9684
Office has a Trust Center that you can get to in Excel by going to File | Options | Trust Center.
The error may be telling you that you need to create a trusted place for deploying the manifest of the add-in. For details about how to do this, see Sideload Office Add-ins for testing.
Upvotes: 0
Reputation: 49395
To resolve the issue, end users or administrators can add the domain of the add-in to the list of trusted sites in Internet Explorer. Use the same procedure whether you're using the Internet Explorer or Microsoft Edge browser. Do not add the URL for an add-in to your list of trusted sites if you don't trust the add-in.
To add a URL to your list of trusted sites:
Office.context.ui.displayDialogAsync(startAddress, {displayInFrame:true}, callback);
See Troubleshoot user errors with Office Add-ins for more information.
Upvotes: 0