SharePoint Visio Graphics Service-PowerShell
1. 配置托管服务账户
Set-SPVisioExternalData -VisioServiceApplication
"Visio Graphics Service" –UnattendedServiceAccountApplicationID
"SSS Visio Graphics"
2. 创建安全数据提供程序
New-SPVisioSafeDataProvider -VisioServiceApplication
"Visio Graphics Service"
–DataProviderID "Custom DB" –DataProviderType 6
3. 显示所有安全数据提供程序
Get-SPVisioSafeDataProvider –VisioServiceApplication
"Visio Graphics Service"
4. 获取指定的安全数据提供程序
$dataProvider =
Get-SPVisioSafeDataProvider –VisioServiceApplication
"Visio Graphics Service" –DataProviderID "Custom DB"
–DataProviderType 6
5. 移除一个安全数据提供程序
Remove-SPVisioSafeDataProvider –VisioServiceApplication
"Visio Graphics Service" –DataProviderID "Custom DB"
–DataProviderType 6
6. 设置数据提供程序的描述
Set-SPVisioSafeDataProvider –VisioServiceApplication
"Visio Graphics Service" –DataProviderID "Custom DB"
–DataProviderType 6 –Description "Custom DB Provider"
7. 配置Visio性能参数
Set-SPVisioPerformance –VisioServiceApplication
"Visio Graphics Service" –MaxDiagramCacheAge 30 -MaxDiagramSize 5
-MaxRecalcDuration 60 -MinDiagramCacheAge 10
–MaxDiagramCacheAge:图形缓存的最大分钟数,默认为60分钟,可用值为0-34560(24天)
–MaxDiagramSize:Visio Graphics服务可处理Visio图形的最大MB数,默认为5,可用值为1-50
–MaxRecalcDuration:Visio Graphics服务重算图形的最大秒数,默认为60秒,可用值为1-120,超出这个值将超时
–MinDiagramCacheAge:图形缓存的最小分钟数,较长时间的缓存可降低内存和CPU的消耗。默认值为5分钟,可用值为0-34560(24天)
SharePoint Visio Graphics Service-PowerShell的更多相关文章
- 错误:该表单无法显示,可能是由于 Microsoft SharePoint Server State Service 配置不当。有关详细信息,请与服务器管理员联系
问题场景: 1.SharePoint 2013 中工作流需要状态服务(State Service),如果没有正确配置状态服务,则在给列表.文档库添加工作流时会遇到错误: “该表单无法显示,可能是由于 ...
- Microsoft SharePoint Server 2013 Service Pack 1 (sp1)终于出来了!!!
Microsoft SharePoint Server 2013 Service Pack 1 终于出来了!以下是下载地址如下,大小1.25G. http://www.microsoft.com/zh ...
- SharePoint 2013 安装 Service Pack 1
Problem 当迁移SharePoint 的时候,执行Move-SPSite 命令,将指定的Site Collection移动到目标内容数据库中时,提示以下错误:Cannot complete th ...
- NetBiosDomainNamesEnabled与SharePoint User Profile Service Application
本文中的内容转自参考资料中的文章. 如果域的NetBios名字跟Fully Qualified Domain Name不同的话, 那么就需要开启UPA的NetBiosDomainNamesEnab ...
- SharePoint 2013 - REST Service
0. SharePoint 2013使用_api来标识出 REST SERVICE,REST Service其实是 client.svc web service的一部分,但为了简化 REST URI的 ...
- How to Operate SharePoint User Alerts with PowerShell
When you migrate list or site, the user alerts in the site will not be migrated together with the co ...
- How to Call SharePoint 2013 API Service to Query The Lists
How to Call SharePoint 2013 API In SharePoint 2013, we can query the list by it owner service, then ...
- SharePoint自动化系列——通过PowerShell创建SharePoint Lists
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 代码如下(保存到本地ps1文件中,右键run with PowerShell即可): Add-PS ...
- SharePoint自动化系列——通过PowerShell创建SharePoint List Items
转载请注明出自天外归云的博客园:http://www.cnblogs.com/LanTianYou/ 代码如下(保存到本地ps1文件中,右键run with PowerShell即可): Add-PS ...
随机推荐
- html文件引用本地js文件出现跨域问题的解决方案
在本地做个小demo,很简单,一个html文件,一个js文件,在html文件中通过<script>标签引入js,但是出现了一个意想不到的问题:浏览器报错—— 一番折腾后,终于弄明白了:加载 ...
- 自动化测试框架Cucumber和RobotFramework的实战对比
转自: http://www.infoq.com/cn/articles/cucumber-robotframework-comparison 一.摘要 自动化测试可以快速自动完成大量测试用例,节 ...
- BZOJ 2648 kd-tree模板
学习了一下kd-tree的基本写法 http://blog.csdn.net/jiangshibiao/article/details/34144829 配合 http://www.bilibili. ...
- Linux——bash应用技巧简单学习笔记
本人是看的lamp兄弟连的视频,学习的知识做一下简单,如有错误尽情拍砖. 命令补齐 命令补齐允许用户输入文件名起始的若干个字 母后,按<Tab>键补齐文件名. 命令历史 命令历史允许用户浏 ...
- Python day21模块介绍4(logging模块,configparser模块)
1.日志等级从上往下依次降低 logging.basicConfig(#日志报错打印的基础配置 level=logging.DEBUG, filename="logger.log" ...
- 远程SqlServer服务器
①,安装net framework3.5. ②,安装sqlserver2014(例). ③,基本配置. 安装sqlserver2014时,开启混合认证模式.当然,也可以在安装后,通过sqlserver ...
- PHP求并集,交集,差集
PHP求并集,交集,差集 一.总结 一句话总结:在php中如果我想要对两个数组进行如并集.交集和差集操作,我们可直接使用php自带的函数来操作如array_merge(),array_intersec ...
- Symbol的控件模板
<esriSymbols:TextSymbol x:Name="text1" Text="adadfdf"></esriSymbols:Tex ...
- WPF编程学习 —— 样式
本文目录 1.引言 2.怎样使用样式? 3.内联样式 4.已命名样式 5.元素类型样式 6.编程控制样式 7.触发器 1.引言 样式(Style),主要是用来让元素或内容呈现一定外观的属性.WPF中 ...
- 微信小程序------MD5加密(支持中文和不支持中文)和网络请求(get和post)
开发中常常遇到MD5加密,最近做小程序也用到了,简单总结了一下: 这要有两个加密文件,一个不支持中文,一个支持,所以你选择支持的来用就行了: 也随便说说小程序的get和post网络请求. 来看看效果图 ...