SharePoint场配置及与OfficeOnline集成

浏览器输入: http://sharepoint:8080 选择向导配置 选择管理用户及应用程序 等待配置完成 创建网站集 输入网站集功能及配置 完成网站集配置

与OfficeOnline集成测试 打开SharePoint PowerShell 绑定WOPI服务器 New-SPWOPIBinding -ServerName officeonline.wiltechs.com –AllowHTTP Set-SPWOPIZone -zone "internal-http"

若要在测试环境中通过 HTTP 将 SharePoint 2016 与 Office Online Server 结合使用,您必须将 AllowOAuthOverHttp 设置为 True。否则,Office Online Server 将不起作用。可通过运行以下示例来检查当前状态: (Get-SPSecurityTokenServiceConfig).AllowOAuthOverHttp 如果此命令返回 False,则运行下列命令可将其设置为 True。 $config = (Get-SPSecurityTokenServiceConfig) $config.AllowOAuthOverHttp = $true $config.Update() 再次运行以下命令来验证 AllowOAuthOverHttp 设置现在是否设置为 True。 (Get-SPSecurityTokenServiceConfig).AllowOAuthOverHttp