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的更多相关文章

  1. SharePoint Web service and template

    SharePoint Web service对应的映射列表 WSS Web   Services Web Reference Administration   Service http://<s ...

  2. SharePoint excel service web part 连接到 filter web part

    本文讲述SharePoint excel service web part 连接到 filter web part的一个简单应用场景. SharePoint excel service web par ...

  3. SharePoint 2013 使用PowerShell创建State Service

    今天,搞SPD配置的sp2010wf迁移到sp2013环境上去,发布解决方案都很正常,给列表添加wf的时候报错“该表单无法显示,可能是由于 Microsoft SharePoint Server St ...

  4. SharePoint 2013 Service 状态无法启动,显示“启动中(Starting)”

    Problem 在SharePoint 2013 Central Administration中启动 SharePoint Service(也称为:Service Machine Instance)时 ...

  5. SharePoint 2013 使用 PowerShell 更新用户

    在SharePoint开发中,经常会遇到网站部署,然而,当我们从开发环境,部署到正式环境以后,尤其是备份还原,所有用户组的用户,还依然是开发环境的,这时,我们就需要用PowerShell更新一下: P ...

  6. SharePoint Word 转换PDF服务介绍及示例

    前言:在SharePoint使用过程中,经常会发现将文档进行格式转换的需求,之前,看到SharePoint 2013有将PPT转换PDF文档的服务,后来,才发现SharePoint 2010开始,就有 ...

  7. sharepoint 2013 使用powershell更改站点集配额和锁定

    打开sharepoint powershell 2013,使用管理员方式打开 逐行输入下面命令: $Admin =  new-object Microsoft.SharePoint.Administr ...

  8. 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 ...

  9. sharepoint 2013 service pack 和 Hotfix 版本

    方法1:Central Administration > System Settings > Manage servers in your farm (/_admin/FarmServer ...

  10. SharePoint自动化系列——Upload files to SharePoint library using PowerShell.

    转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 日常的SharePoint站点测试中,我们经常要做各种各样的数据,今天又写了几个脚本,发现自己写的 ...

随机推荐

  1. 【第十章】 springboot + logback

    logback是boot默认的日志首选,个人觉得是最好的日志实现(比log4j好) 下边,在之前的代码基础上增加一个功能,该功能要实现mybatis的and or联查功能,并通过logback日志在控 ...

  2. IEnumerable与IEnumerator

    IEnumerable接口 IEnumerable接口:实现该接口的类,表明该类下有可以枚举的元素 public interface IEnumerable { //返回一个实现了IEnumerato ...

  3. python删除所有自定义变量方法--转载

    http://blog.sina.com.cn/s/blog_b2f983a50102yexs.html   当我们在pythonwin中创建多个变量后,通过dir()函数,可以看到所有已创建变量,这 ...

  4. VcCallC#_01

    1.C# 代码: using System; using System.Collections.Generic; //using System.Linq; using System.Text; //u ...

  5. [ios]MKMapView中使用MKPolyline画线

    参考:http://blog.sina.com.cn/s/blog_9e8867eb0101dt76.html 首先在MapView.h中 #import <MapKit/MapKit.h> ...

  6. 对当前JAVA流行框架的一些小感悟

    这几年,蹦出了不少各种JAVA框架,像是spring boot.spring cloud 和spring mvc或者是mybatis等等. 不断有人感慨,技术更新的太快,自己学都学不过来了. 但是,这 ...

  7. 《剑指offer》第三十七题(序列化二叉树)

    // 面试题37:序列化二叉树 // 题目:请实现两个函数,分别用来序列化和反序列化二叉树. #include "BinaryTree.h" #include <iostre ...

  8. Image():强制让图片缓存起来

    Image 对象 Image 对象代表嵌入的图像. <img> 标签每出现一次,一个 Image 对象就会被创建. 创建一个Image对象:var a=new Image();    定义 ...

  9. web前端设计规范

    hi,这里写出一点自己对web产品开发的一点粗浅的规范认识,一切为了敏捷开发哈哈. 1.流程. (1) 当产品给出原型和产品文档. (2)设计师更据原型,开始设计产品的效果图. (3)设计师设计完毕后 ...

  10. 快速读入fread

    struct FastIO { static const int S = 1e7; int wpos; char wbuf[S]; FastIO() : wpos(0) {} inline int x ...