好久没写什么新文章了,这里有关Office Web Apps 的部署我就省略了,只是在创建web场我一般 会创建2个url, 如:
New-OfficeWebAppsFarm -InternalUrl "https://owas.contoso.com" -ExternalUrl "https://owas.contoso.com" –CertificateName "owas.contoso.com" -EditingEnabled
(注:owas.contoso.com为证书的友好名称,这个需要我们像根证书颁发机构申请,证书必须具有可导出的私钥,并且“友好名称”字段在受信任根证书颁发机构存储中必须是唯一的。)
验证是否成功创建了 Office Web Apps Server 服务器场打开网页https://owas.contoso.com/hosting/discovery,和http://owas/hosting/discovery
我们打开exchange 2013 powershell,配置office web apps server URL
Set-OrganizationConfig -WACDiscoveryEndPoint https://owas.contoso.com/hosting/discovery
检查指令:Get-OrganizationConfig | Format-List WACDiscoveryEndPoint
启用或禁用office web apps server的呈现:
这里分为2种,一种为共用计算机启用附件呈现,一种为专用计算机启用附件呈现:
首先是专用:
在server01的默认outlook web app虚拟目录上启用owa呈现:
Set-OwaVirtualDirectory "exchangeowa (Default Web Site)" -WacViewingOnPrivateComputersEnabled $true
然后是共用:
在server01的默认outlook web app虚拟目录上启用owa呈现:
Set-OwaVirtualDirectory "exchangeowa (Default Web Site)" -WacViewingOnPublicComputersEnabled $true
要验证是否正确配置了owa的服务器渲染,运行以下命令行:
Get-OwaVirtualDirectory "exchangeowa (Default Web Site)" | Format-List Name,WacViewing*
验证 WacViewingOnPrivateComputersEnabled 属性是否设置为 True 并且 WacViewingOnPublicComputersEnabled 是否设置为 False。
强制执行owa呈现:
强制用户首先使用Owa呈现附件,再直接打开附件。无论用户在登陆outlook web app时选择的选项是什么。
Set-OwaVirtualDirectory "exchangeowa (Default Web Site)"
-ForceWacViewingFirstOnPublicComputers $true
-ForceWacViewingFirstOnPrivateComputers $true
验证是否成功,运行如下命令:
Get-OwaVirtualDirectory "exchangeowa (Default Web Site)" | Format-List Name,ForceWacViewing*
验证 ForceWacViewingFirstOnPrivateComputers 和 ForceWacViewingFirstOnPublicComputers 属性是否都设置为 True。
具体的截图可以参考:
http://tech.ddvip.com/2013-07/1374872785199804.html
http://1183839.blog.51cto.com/1173839/1140198/