好久没写什么新文章了,这里有关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 "exchange\owa (Default Web Site)" -WacViewingOnPrivateComputersEnabled $true

然后是共用:

在server01的默认outlook web app虚拟目录上启用owa呈现:

Set-OwaVirtualDirectory "exchange\owa (Default Web Site)" -WacViewingOnPublicComputersEnabled $true

要验证是否正确配置了owa的服务器渲染,运行以下命令行:

Get-OwaVirtualDirectory "exchange\owa (Default Web Site)" | Format-List Name,WacViewing*

验证 WacViewingOnPrivateComputersEnabled 属性是否设置为 True 并且 WacViewingOnPublicComputersEnabled 是否设置为 False。

强制执行owa呈现:

强制用户首先使用Owa呈现附件,再直接打开附件。无论用户在登陆outlook web app时选择的选项是什么。

Set-OwaVirtualDirectory "exchange\owa (Default Web Site)"
-ForceWacViewingFirstOnPublicComputers $true
-ForceWacViewingFirstOnPrivateComputers $true

验证是否成功,运行如下命令:

Get-OwaVirtualDirectory "exchange\owa (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/

Exchange 2013与 Office Web Apps 整合的更多相关文章

  1. SharePoint 2013中Office Web Apps的一次排错

    转自http://www.cnblogs.com/awpatp/archive/2013/06/06/3121420.html, 仅供自己查看 笔者尝试在自己的测试环境中为SharePoint 201 ...

  2. office web apps 整合Java web项目

    之前两篇文章将服务器安装好了,项目主要的就是这么讲其整合到我们的项目中,网上大部分都是asp.net的,很少有介绍Java如何整合的,经过百度,终于将其整合到了我的项目中. 首先建个servlet拦截 ...

  3. sharepoint 2013 和 office web apps server 2013集成

    环境: 三台服务器  系统:window 2008 R2server01: 192.168.10.162(office web app)server02: 192.168.10.163(AD)serv ...

  4. office web apps 整合到自己项目中(wopi实现在线预览编辑)

    借助office web apps实现在线预览和在线编辑 我所有的代码都是用go语言编写,你可以直接编译后使用,不用再有其他的操作. 最近项目实在太忙,这几天才有时间,这次是重头戏,要好好琢磨一下怎么 ...

  5. [转载]部署Office Web Apps Server并配置其与SharePoint 2013的集成

    Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...

  6. 部署Office Web Apps Server并配置其与SharePoint 2013的集成

    部署Office Web Apps Server并配置其与SharePoint 2013的集成   Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.P ...

  7. 如何整合Office Web Apps至自己开发的系统(一)

    在前面我的一篇博客中 Office Web Apps安装部署(一),有一张介绍Office Web Apps与其他系统的关系图,   从上述图中,可知实际上Office Web Apps也是可以接入自 ...

  8. 整合Office Web Apps至自己的开发系统

    原文出处:http://www.cnblogs.com/poissonnotes/p/3267190.html 还可参考:https://www.cnblogs.com/majiang/p/36729 ...

  9. Office Web Apps Server 2013与PDF(一)

    好吧--这个消息有点旧,迟了将近4个月. Office Web Apps是微软各大服务产品系列中的一个基础服务,可以为SharePoint 2013.Exchange 2013.Lync 2013提供 ...

随机推荐

  1. [转]C++中vector使用详细说明

    一.向量的介绍    向量 vector 是一种对象实体, 能够容纳许多其他类型相同的元素, 因此又被称为容器. 与string相同, vector 同属于STL(Standard Template ...

  2. NOIP2015其余几道题

    T1: #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> # ...

  3. 【转载】gdi+ 内存泄漏

    [转载]http://issf.blog.163.com/blog/static/1941290822009111894413472/ 最近用GDI+实现了几个自定义控件,但是发现存在内存泄露问题 B ...

  4. 使用 IntraWeb (21) - 基本控件之 TIWTabControl

    TIWTabControl 包含的是 TIWTabPage; 设计时通过右键菜单 Add Page 添加(再给页面添加东西时一定要先选定页面); 下面例子是动态添加的. TIWTabControl 所 ...

  5. 关于.net core程序的部署

    最近发布.net core程序的时候,发现它是可以独立部署的,它支持如下两种部署方式: 依赖框架的部署FDD.只发布我们的程序,运行前用户需要手动安装.net core runtime. 独立部署SC ...

  6. bitnami-redmine邮件告警配置

    配置 bitnami-redmine的配置文件与单纯的redmine配置文件可能并不相同,在这里我们需要打开一下配置文件: /opt/bitnami/apps/redmine/htdocs/confi ...

  7. 解决oracle语句中 含数字的字符串按数字排序问题

    普通排序利用:order by 字段名 ASC 但是遇到有中文而且类型是varchar类型的结果就是这样 政采代(甲)字第0298号 政采代(甲)字第0421号 政采代(甲)字第1098号 政采代(甲 ...

  8. react-router 从 v2/v3 to v4 迁移(翻译)

    react-router v4 是完全重写的,所以没有简单的迁移方式,这份指南将为您提供一些步骤,以帮助您了解如何升级应用程序. 注意: 这份迁移指南适用于react-router v2和v3,但为简 ...

  9. After 2 years, I have finally solved my "Slow Hyper-V Guest Network Performance" issue. I am ecstatic.

    Edit - It should be known that I was initially researching this issue back in 2012 and the solution ...

  10. MongoDB C# 驱动的各种版本下载地址

    https://github.com/mongodb/mongo-csharp-driver/releases