博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SharePoint Infopath表单服务-PowerShell
阅读量:5248 次
发布时间:2019-06-14

本文共 1765 字,大约阅读时间需要 5 分钟。

1. 激活可浏览的表单模板

Set-SPInfoPathFormsService -AllowUserFormBrowserEnabling $true-AllowUserFormBrowserRendering $true

2. 设置数据连接超时

Set-SPInfoPathFormsService –DefaultDataConnectionTimeout 15–MaxDataConnectionTimeout 25

3. 设置数据连接响应大小

Set-SPInfoPathFormsService –MaxDataConnectionResponseSize 3

4. 修改认证设置

Set-SPInfoPathFormsService –RequireSslForDataConnections $true –AllowEmbeddedSqlForDataConnection $true –AllowUdcAuthenticationForDataConnections $true –AllowUserFormCrossDomainDataConnections $true

RequireSslForDataConnections:True为表单使用HTTP认证时需要SSL加密。

AllowEmbeddedSqlForDataConnection:当有包含用户名和密码的数据库连接信息的数据连接文件时,设置为True。

AllowUdcAuthenticationForDataConnections:是否允许自定义表单通过数据连接文件访问数据源。

AllowUserFormCrossDomainDataConnections:当表单需要访问与SharePoint不同的数据源时,设置为True。

5. 设置会话状态

Set-SPInfoPathFormsService –MaxPostbacksPerSession 110 –ActiveSessionTimeout 720

6. 启用视图状态

Set-SPInfoPathFormsService –AllowViewState $true –ViewStateThreshold40961

7. 验证并上传表单模板

Test-SPInfoPathFormTemplate-Path "<
>" Install-SPInfoPathFormTemplate-Path "<
>"

8. 一次上传多个表单模板

"<
>" , "<
" , "<
>" |Install-SPInfoPathFormTemplate

9. 激活/反激活网站集的表单模板

Enable-SPInfoPathFormTemplate-Identity "<
>"-Site "<
>"
Disable-SPInfoPathFormTemplate-Identity "<
>"-Site "<
>"

10. 从InfoPath表单服务移除一个表单

Uninstall-SPInfoPathFormTemplate -Identity "<
>"

11. 禁用InfoPath表单服务中的某一表单

Stop-SPInfoPathFormTemplate -Identity "<
>"

12. 启用Web服务代理

Set-SPInfoPathWebServiceProxy -Identity "<
>"-AllowWebServiceProxy $true
Set-SPInfoPathWebServiceProxy -Identity "<
>"-AllowForUserForms $true

转载于:https://www.cnblogs.com/justinliu/p/5961720.html

你可能感兴趣的文章
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
Django 相关
查看>>
比较安全的获取站点更目录
查看>>
空间分析开源库GEOS
查看>>
RQNOJ八月赛
查看>>
前端各种mate积累
查看>>
Python(软件目录结构规范)
查看>>
Windows多线程入门のCreateThread与_beginthreadex本质区别(转)
查看>>
Nginx配置文件(nginx.conf)配置详解1
查看>>
linux php编译安装
查看>>
name phone email正则表达式
查看>>
重置GNOME-TERMINAL
查看>>
redis哨兵集群、docker入门
查看>>
hihoCoder 1233 : Boxes(盒子)
查看>>
codeforces水题100道 第二十二题 Codeforces Beta Round #89 (Div. 2) A. String Task (strings)
查看>>
c++||template
查看>>
[BZOJ 5323][Jxoi2018]游戏
查看>>
编程面试的10大算法概念汇总
查看>>