分享

专栏:PowerShell for SharePoint

 gogo8848 2014-11-05

最新更新文章

[系统运维] SharePoint Word Service-PowerShell

SharePoint 2010 Word Service相关的PowerShell命令...

SharePoint PowerShell

月飘冥 2013-07-16 19:27 阅读(473) 评论(0)

[系统运维] SharePoint Visio Graphics Service-PowerShell

SharePoint 2010 Visio Graphics Service相关的PowerShell命令...

SharePoint PowerShell

月飘冥 2013-07-15 20:12 阅读(375) 评论(0)

[系统运维] SharePoint Access Service-PowerShell

SharePoint 2010 Access Service相关的PowerShell命令...

SharePoint PowerShell

月飘冥 2013-07-10 19:21 阅读(450) 评论(0)

[系统运维] SharePoint PerformancePoint Service-PowerShell

SharePoint 2010 PerformancePoint Service相关的PowerShell命令...

SharePoint PowerShell

月飘冥 2013-07-09 19:32 阅读(391) 评论(0)

[系统运维] SharePoint Excel Service-PowerShell

SharePoint 2010 Excel Service相关的PowerShell命令...

SharePoint PowerShell

月飘冥 2013-07-08 20:00 阅读(463) 评论(0)

[系统运维] SharePoint 会话(Session)状态和状态服务

->启用会话状态 ->禁用会话状态 ->显示会话状态信息 ->配置会话状态超时时间 ->显示场中的状态服务应用程序配置 ->获取指定的状态服务应用程序 ->重命名状态服务应用程序 ->执行状态服务数据库操作...

SharePoint PowerShell

月飘冥 2013-07-07 07:46 阅读(625) 评论(0)

[系统运维] SharePoint 元数据服务-PowerShell

->获取元数据服务应用程序标识 ->获取指定的元数据服务应用程序实例 ->配置元数据服务账户 ->配置术语存储数据库 ->配置内容类型中心 ->获取元数据服务代理标识 ->获取指定的元数据服务应用程序代理实例 ->配置元数据服务连接选项...

SharePoint PowerShell

月飘冥 2013-07-06 17:35 阅读(505) 评论(0)

[系统运维] SharePoint SSS(Security Store Service)服务-PowerShell

->获取SSS应用程序的标识 ->获取指定的SSS应用程序实例 ->启用SSS审计 ->配置安全存储数据库 ->生成新的主密钥 ->刷新密钥 ->创建应用字段 ->创建目标应用 ->创建新的应用程序入口...

SharePoint PowerShell

月飘冥 2013-07-05 19:18 阅读(499) 评论(0)

[系统运维] SharePoint BDC(Business Data Connectivity)服务-PowerShell

->获取BCS服务应用程序的标识 ->获取指定的BCS服务应用程序实例 ->配置BCS数据库 ->获取BCS元数据对象 ->导入BCS模型 ->导出BCS模型...

SharePoint PowerShell

月飘冥 2013-07-05 19:05 阅读(426) 评论(0)

[系统运维] SharePoint 用户配置文件服务

->获取用户配置文件服务应用程序标识 ->获取指定的用户配置文件服务应用程序实例 ->配置用户配置文件服务应用程序设置 ->移除旧的注释 ->移除旧的评分 ->移除旧的标签 ->更新用户配置文件照片存储 ->使用用户配置文件服务的辅助命令...

SharePoint PowerShell

月飘冥 2013-07-04 19:40 阅读(519) 评论(0)

[系统运维] SharePoint Foundation 搜索-PowerShell

->显示搜索服务信息 ->显示搜索服务实例 ->获取指定的搜索服务实例 ->配置爬网账户 ->配置最大备份时长 ->配置搜索服务执行级别...

SharePoint PowerShell

月飘冥 2013-07-04 19:28 阅读(429) 评论(0)

[系统运维] SharePoint 企业搜索-PowerShell

1. 显示企业搜索服务信息 Get-SPEnterpriseSear1chService 2. 显示企业搜索服务实例 Get-SPEnterpriseSearchServiceInstance 3. 获取指定的企业搜索服务实例 $ssInstance = Get-SPEnterpriseSearchServiceInstance -Identity 91d00542-76cf-41...

SharePoint PowerShell

月飘冥 2013-07-03 20:06 阅读(393) 评论(0)

[系统运维] SharePoint Infopath表单服务-PowerShell

1. 激活可浏览的表单模板 Set-SPInfoPathFormsService -AllowUserFormBrowserEnabling $true -AllowUserFormBrowserRendering $true 2. 设置数据连接超时 Set-SPInfoPathFormsService –DefaultDataConnectionTimeout 15 –MaxDataC...

SharePoint PowerShell

月飘冥 2013-07-02 19:21 阅读(501) 评论(0)

[系统运维] SharePoint 内容部署-PowerShell

1. 创建一个新的内容部署路径 New-SPContentDeploymentPath –Name "Marketing Internet Content" –SourceSPWebApplication "SharePoint – 80" –SourceSPSite "http://intranet./Marketing" –DestinationCentralAdm...

SharePoint PowerShell

月飘冥 2013-07-01 18:47 阅读(440) 评论(0)

[系统运维] SharePoint 解决方案和功能-PowerShell

1. 添加解决方案到SharePoint场 Add-SPSolution "c:\newsolution.wsp" 2. 获取场中的解决方案 Get-SPSolution 3. 获取指定的解决方案 $solution = Get-SPSolution -Identity c0e31dec-294d-4f2d-9ae4-f2e637c766bd 4. 部署解决方案到Web应用程序 $...

SharePoint PowerShell

月飘冥 2013-06-30 15:37 阅读(521) 评论(0)

[系统运维] SharePoint 网站管理-PowerShell

1. 显示场中所有可用的网站集 Get-SPSite 2. 显示某一Web应用程序下可用的网站集 Get-SPSite –WebApplication "SharePoint – 80" 3. 显示某一内容数据库中可用的网站集 Get-SPSite –ContentDatabase "WSS_CONTENT1" 4. 获取指定的网站集 $webApp = Get-SPSite -Id...

SharePoint PowerShell

月飘冥 2013-06-29 19:02 阅读(743) 评论(0)

[系统运维] SharePoint 数据库管理-PowerShell

1. 显示所有SharePoint数据库 Get-SPDatabase –ServerInstance "SP2010\SQLSharePoint" 2. 获取指定的数据库 $database = Get-SPDatabase -Identity 47036154-7a05-44be-9137-9be09f43ccb5 3. 创建一个新的内容数据库 New-SPContentDatab...

SharePoint PowerShell

月飘冥 2013-06-28 21:35 阅读(537) 评论(0)

[系统运维] SharePoint 服务应用程序管理-PowerShell

1. 安装所有可用的服务应用程序 Install-SPService -Provision 2. 显示场中所有可用的服务应用程序 Get-SPServiceApplication 3. 获取指定的服务应用程序 $sApp = Get-SPServiceApplication -Identity bc4399ed-a 2e0-4397-bf07-cd3d207e630e 4. 配置...

ShaerePoint PowerShell

月飘冥 2013-06-27 19:23 阅读(505) 评论(0)

[系统运维] SharePoint Web应用程序管理-PowerShell

1. 显示场中的Web应用程序 Get-SPWebApplication 2. 获取指定的Web应用程序 $webApp = Get-SPWebApplication -Identity "PSWebApp" 3. 移除一个Web应用程序 $webApp = Get-SPWebApplication -Identity "PSWebApp" Remove-SPWebApplicatio...

SharePoint PowerShell

月飘冥 2013-06-26 19:16 阅读(433) 评论(0)

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多