Exchange 2013与 Office Web Apps 整合
好久没写什么新文章了,这里有关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 整合的更多相关文章
- SharePoint 2013中Office Web Apps的一次排错
转自http://www.cnblogs.com/awpatp/archive/2013/06/06/3121420.html, 仅供自己查看 笔者尝试在自己的测试环境中为SharePoint 201 ...
- office web apps 整合Java web项目
之前两篇文章将服务器安装好了,项目主要的就是这么讲其整合到我们的项目中,网上大部分都是asp.net的,很少有介绍Java如何整合的,经过百度,终于将其整合到了我的项目中. 首先建个servlet拦截 ...
- sharepoint 2013 和 office web apps server 2013集成
环境: 三台服务器 系统:window 2008 R2server01: 192.168.10.162(office web app)server02: 192.168.10.163(AD)serv ...
- office web apps 整合到自己项目中(wopi实现在线预览编辑)
借助office web apps实现在线预览和在线编辑 我所有的代码都是用go语言编写,你可以直接编译后使用,不用再有其他的操作. 最近项目实在太忙,这几天才有时间,这次是重头戏,要好好琢磨一下怎么 ...
- [转载]部署Office Web Apps Server并配置其与SharePoint 2013的集成
Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.PowerPoint.Excel 和 OneNote 的基于浏览器的版本.单个 Office Web ...
- 部署Office Web Apps Server并配置其与SharePoint 2013的集成
部署Office Web Apps Server并配置其与SharePoint 2013的集成 Office Web Apps Server 是新的 Office 服务器产品,它提供 Word.P ...
- 如何整合Office Web Apps至自己开发的系统(一)
在前面我的一篇博客中 Office Web Apps安装部署(一),有一张介绍Office Web Apps与其他系统的关系图, 从上述图中,可知实际上Office Web Apps也是可以接入自 ...
- 整合Office Web Apps至自己的开发系统
原文出处:http://www.cnblogs.com/poissonnotes/p/3267190.html 还可参考:https://www.cnblogs.com/majiang/p/36729 ...
- Office Web Apps Server 2013与PDF(一)
好吧--这个消息有点旧,迟了将近4个月. Office Web Apps是微软各大服务产品系列中的一个基础服务,可以为SharePoint 2013.Exchange 2013.Lync 2013提供 ...
随机推荐
- BZOJ 3621: 我想那还真是令人高兴啊 计算几何 复数
https://www.lydsy.com/JudgeOnline/problem.php?id=3621 给定两个三角形,其中一个可以通过以某点为中心旋转并放缩的方式得到另一个,求这个中心 http ...
- [AHOI2013]作业
[AHOI2013]作业 题目大意: 给定一个长度为\(n(n\le10^5)\)的数列\(A(1\le A_i\le n)\).\(m(m\le10^6)\)次询问,每次询问区间\([l,r]\)内 ...
- String和StringBuilder、StringBuffer的区别?
估计很多Java初学者在学习Java的过程中都会遇到这个问题,那就是String,StringBuilder,StringBuffer这三个类之间有什么区别?今天在这里整理一下,希望对大家有帮助哈.如 ...
- hdu 5753 Permutation Bo 水题
Permutation Bo 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5753 Description There are two sequen ...
- 【Go命令教程】1. 标准命令详解
Go 语言的 1.5 版本在标准命令方面有了重大变更.这倒不是说它们的用法有多大的变化,而是说它们的底层支持已经大变样了.让我们先来对比一下 $GOROOT/pkg/tool/< 平台相关目录 ...
- leetcode——169 Majority Element(数组中出现次数过半的元素)
Given an array of size n, find the majority element. The majority element is the element that appear ...
- Matlab 7.1安装及打不开问题解决
一.安装方法 1.解压[MATLAB.V7.1.Windows版本号].MATLAB.V7.1.R14.SP3.CD1.iso,双击setup进行安装,输入username,单位,找到crac ...
- Xamarin.iOS,AOT,JIT,Limitations
Since applications on the iPhone using Xamarin.iOS are compiled to static code, it is not possible t ...
- ASP.NET MVC下实现前端视图页的Session
在ASP.NET MVC的控制器中可以实现Session处理.如果要在前端视图页实现Session该如何做呢?可以使用window.sessionStorage来做. AlexChittock用jQu ...
- Spring Boot 2.0 + zipkin 分布式跟踪系统快速入门
原文:https://www.jianshu.com/p/9bfe103418e2 注意 Spring Boot 2.0之后,使用EnableZipkinServer创建自定义的zipkin服务器已经 ...