Office web apps 打补丁后(安装PDF在线浏览) 错误解决

 

技术分享

 

最近为了能让PDF在线review,所以安装了460287_intl_x64_zip.exe 这个OWA的hotfix, 安装后,发现OWA挂了,一段搜索之后,发现要重新配置OWA:

1. 在OWA的机器上配置OWA Farm

 

Import-Module OfficeWebApps
New-OfficeWebAppsFarm -InternalUrl  "OWA Server FQDN" -AllowHttp -EditingEnabled  -Confirm:$false

 

2. 在Sharepoint的机器上配置Binding

Add-PSSnapin Microsoft.SharePoint.PowerShell -ea 0
        Remove-SPWOPIBinding –All:$true -Confirm:$false
        $server = "OWA Server FQDN"        New-SPWOPIBinding -ServerName $server -AllowHTTP
        Set-SPWOPIZone –zone "internal-http" -Confirm:$false


        $a = New-SPUserLicenseMapping -SecurityGroup "Domain Users " –License OfficeWebAppsEdit
        $a | Add-SPUserLicenseMapping
        Enable-SPUserLicensing -Confirm:$false

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。