user3432392
user3432392

Reputation: 11

How to deploy officeJS addin on office online on-premise server?

I have written a small officeJS addin for excel which run perfectly on desktop excel client. Also office online from onedrive gives an option of installing the addin from the ribbon menu. I want to use this officeJS addin to run on either of the following configuration:

  1. On premise office online server configured with on premise sharepoint server.
  2. On premise office online server with my own implementation of wopi host.

How to deploy an officeJS addin on office online on premise server which is preferably managed centrally by the administrator.

Also why is the add-ins option is not available on the office online configured with sharepoint, pfa image: office online onedrive v/s office online onprem with sharepoint

Thank You

Upvotes: 1

Views: 806

Answers (2)

Rick Kirkham
Rick Kirkham

Reputation: 9674

Try this. On a server in the farm, open the SharePoint Management Shell (PowerShell). Run this command:

Set-OfficeWebAppsFarm - OfficeAddinEnabled:$true

You probably have to be logged in as a farm administrator. There is some documentation here: Set-OfficeWebAppsFarm

Upvotes: 1

Sudhi Ramamurthy
Sudhi Ramamurthy

Reputation: 2478

The Office Online Server currently doesn't enable Office store by default. As part of the configuration, you'd have to enable it. I'm not 100% sure about the exact setting. It may be this: set the AllowExternalMarketplace flag to true.

More here

Upvotes: 2

Related Questions