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站点测试中,我们经常要做各种各样的数据,今天又写了几个脚本,发现自己写的 ...
随机推荐
- 到底二级域名和一级域名哪个更利于SEO
到底二级域名和一级域名哪个更利于SEO呢?本文是从百度官方转载详细的介绍:二级域名和一级域名的区别,请各位认真阅读. 二级域名和子域名的区别可以通过以下3点来解读: 一,二级域名的特点 搜索引擎往往将 ...
- BZOJ 1001: [BeiJing2006]狼抓兔子(s-t平面图+最短路求最小割)
http://www.lydsy.com/JudgeOnline/problem.php?id=1001 题意: 思路:这道题目是最小割题目,但是吧你直接套用Dinic是会超时的. 这里有种很奇妙的做 ...
- 【Django】【四】测试
[Testing in Django] 通过参数可控制Django项目不同级别的测试. 1. 运行sign应用下所有的测试用例: \\guest\python manage.py test sign ...
- python 删除列表中的字典元素
data={"} ,{"}]} print("before:\n\n",data,"\n\n") temp=- k= for i in da ...
- Qt5_加载DLL
1.QLibrary 加载普通 DLL //写清楚库的路径,如果放在当前工程的目录下,路径为./Oracle.so QLibrary *libOCI = new QLibrary("F:\\ ...
- Linux后台日志定时清理脚本
一. 简介 linux是一个很能自动产生文件的系统,日志.邮件.备份等.虽然现在硬盘廉价,我们可以有很多硬盘空间供这些文件浪费,让系统定时清理一些不需要的文件很有一种爽快的事情.不用你去每天惦记着是否 ...
- org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): 问题解决方法
在用maven配置mybatis环境时出现此BindingExceptiony异常,发现在classes文件下没有mapper配置文件,应该是maven项目没有扫描到mapper包下的xml文件,在p ...
- 雷林鹏分享:C# 泛型(Generic)
C# 泛型(Generic) 泛型(Generic) 允许您延迟编写类或方法中的编程元素的数据类型的规范,直到实际在程序中使用它的时候.换句话说,泛型允许您编写一个可以与任何数据类型一起工作的类或方法 ...
- 什么是SQL游标?
1.1游标的概念 游标(Cursor)它使用户可逐行访问由SQL Server返回的结果集.使用游标(cursor)的一个主要的原因就是把集合操作转换成单个记录处理方式.用SQL语言从数据库中检索数据 ...
- English trip -- VC(情景课)5 D
Read 阅读 Listen and read. 听并读 Notice from Riverside Library Come and visit Riverside Library.The new ...