SharePoint Word Service-PowerShell
1. 配置转换进程
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –ActiveProcesses 5
2. 配置转换吞吐量
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services"
–TimerJobFrequency 5 –ConversionsPerInstance 100
3. 配置支持的转换文档格式
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –RemoveSupportedFormats rtf,mht
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –AddSupportedFormats docx,doc
4. 修改数据库信息
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –DatabaseServer SP2010
–DatabaseName WordServices –DatabaseCredential (Get-Credential)
5. 修改工作监听
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services"
–ConversionTimeout 10
6. 修改转换超时时间
Set-SPWordConversionServiceApplication –Identity "Word Automation Services" –KeepAliveTimeout 45 –MaximumConversionTime 120
7. 修改转换的最大尝试数
Set-SPWordConversionServiceApplication –Identity "Word Automation Ser- vices" –MaximumConversionAttempts 3
8. 修改使用内存的最大数
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –MaximumMemoryUsage 50
9. 禁用97-2003文档的扫描
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –DisableBinaryFileScan
启用
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –DisableBinaryFileScan:$false
10. 禁用嵌入的字体
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –DisableEmbeddedFonts
启用
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –DisableEmbeddedFonts:$false
11. 修改回收站临界值
Set-SPWordConversionServiceApplication
–Identity "Word Automation Services" –RecycleProcessThreshold 200
SharePoint Word Service-PowerShell的更多相关文章
- SharePoint Web service and template
SharePoint Web service对应的映射列表 WSS Web Services Web Reference Administration Service http://<s ...
- SharePoint excel service web part 连接到 filter web part
本文讲述SharePoint excel service web part 连接到 filter web part的一个简单应用场景. SharePoint excel service web par ...
- SharePoint 2013 使用PowerShell创建State Service
今天,搞SPD配置的sp2010wf迁移到sp2013环境上去,发布解决方案都很正常,给列表添加wf的时候报错“该表单无法显示,可能是由于 Microsoft SharePoint Server St ...
- SharePoint 2013 Service 状态无法启动,显示“启动中(Starting)”
Problem 在SharePoint 2013 Central Administration中启动 SharePoint Service(也称为:Service Machine Instance)时 ...
- SharePoint 2013 使用 PowerShell 更新用户
在SharePoint开发中,经常会遇到网站部署,然而,当我们从开发环境,部署到正式环境以后,尤其是备份还原,所有用户组的用户,还依然是开发环境的,这时,我们就需要用PowerShell更新一下: P ...
- SharePoint Word 转换PDF服务介绍及示例
前言:在SharePoint使用过程中,经常会发现将文档进行格式转换的需求,之前,看到SharePoint 2013有将PPT转换PDF文档的服务,后来,才发现SharePoint 2010开始,就有 ...
- sharepoint 2013 使用powershell更改站点集配额和锁定
打开sharepoint powershell 2013,使用管理员方式打开 逐行输入下面命令: $Admin = new-object Microsoft.SharePoint.Administr ...
- SharePoint Excel Service - Couldn't Open the Workbook.
Error meesage: "Couldn't Open the Workbook. Wow, That's a big workbook. Unfortunately, we can't ...
- sharepoint 2013 service pack 和 Hotfix 版本
方法1:Central Administration > System Settings > Manage servers in your farm (/_admin/FarmServer ...
- SharePoint自动化系列——Upload files to SharePoint library using PowerShell.
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 日常的SharePoint站点测试中,我们经常要做各种各样的数据,今天又写了几个脚本,发现自己写的 ...
随机推荐
- 详解一下 javascript 中的比较
翻译自:http://www.ecma-international.org/ecma-262/5.1/#sec-11.9.3 在JS中的关系比较(Relational Comparison)运算,指的 ...
- Cocos2d-x学习笔记(五)调度
在init方法中增加下边的代码,建议使用schedule函数,而不是scheduleUpdate函数,因为,后者默认是调用update函数,在如果有多个函数需要调度时,不是很灵活. auto labe ...
- P2865 【[USACO06NOV]路障Roadblocks】(次短路)
传送门 算法Dijkstra要求次短路 那么在不考虑重复走一条边的情况下 肯定是把最短路中的一段改成另一段 至少要换另一条边到路径里所以可以枚举所有不属于最短路的每条边(a,b) 那么dis(1,a) ...
- 使用 apply 函数族
之前,我们讨论过可以使用 for 循环,在一个向量或列表上进行迭代,重复执行某个表达式.但是在实践中,for 循环往往是最后的选择,因为每次迭代都是相互独立的,所以我们可以使用更简洁更方便的读写方式来 ...
- Qt5.3.2_CentOS6.4_单步调试环境__20160306【勿删,繁琐】
20160306 全程没有f/q ZC:使用的虚拟机环境是:博客园VMwareSkill 的 “CentOS6.4_x86_120g__20160306.rar” 需要调试器 gdb ,从“http: ...
- [原][OSG]整理osg渲染一帧的流程
参考:最长的一帧 先看下frame void ViewerBase::frame(double simulationTime) { advance(simulationTime);//记录仿真时间,帧 ...
- Android中getLocationOnScreen和getLocationInWindow 获取屏幕大小
需要确定组件在父窗体中的坐标时,使用getLocationInWindow,需要获得组件在整个屏幕的坐标时,使用getLocationOnScreen. 其中location [0]代表x坐标,loc ...
- 将数组划分成连续子序列 Split Array into Consecutive Subsequences
2018-08-04 20:47:43 问题描述: 问题描述: 本题需要的是将一个数组划分成子序列,保证每个子序列是连续的,并且长度要大于等于3. 解题思路是使用贪心算法,首先对数组中的数字进行计数, ...
- Oracle 千万级别数据查询优化
说明:平时很少接触到大数据分页,今天有兴趣在数据库插入1000万条数据进行测试,经过查询相关资料得到如下说明:笔者在工作中有一上百万条记录的表,在jsp页面中需对该表进行分页显示,便考虑用rownum ...
- 使用Python生成双色球号码
说来也是巧,今天和一个朋友聊天,说他运气不错应该买彩票,于是就想到了双色球的规则,就写了几行代码产生双色球号码,代码如下: import random,time def process_int(x): ...