SharePoint PerformancePoint Service-PowerShell
1. 配置托管服务账户
Set-SPPerformancePointSecureDataValues -ServiceApplication
"PerformancePoint Service Application"
–DataSourceUnattendedServiceAccount (Get-Credential)
2. 显示托管服务账户
Get-SPPerformancePointSecureDataValues –ServiceApplication
"PerformancePoint Service Application"
3. 创建一个可信内容位置
New-SPPerformancePointServiceApplicationTrustedLocation
-Url "http://sp2010/Lists/PPS Content" -ServiceApplication
"PerformancePoint Service Application" –Type List
–TrustedLocationType Content
4. 创建一个可信数据源位置
New-SPPerformancePointServiceApplicationTrustedLocation -Url "http:// sp2010/PPS DataSource" -ServiceApplication
"PerformancePoint Service Application" –Type DocumentLibrary
–TrustedLocationType DataSource
5. 显示所有可信内容位置
Get-SPPerformancePointServiceApplication
"Performance Point Service Application" |
Get-SPPerformancePointServiceApplicationTrustedLocation
-Identity $_.ID | where {$_.FileType -eq "Content"}
6. 显示所有可信数据源位置
Get-SPPerformancePointServiceApplication
"Performance Point Service Application"
| Get-SPPerformancePointServiceApplicationTrustedLocation
-Identity $_.ID | where {$_.FileType -eq "DataSource"}
7. 显示信任位置的明细
Get-SPPerformancePointServiceApplication
"Performance Point Service Application" |
Get-SPPerformancePointServiceApplicationTrustedLocation
-Identity $_.ID | select *
8. 获取指定的信任位置
$trustedLocation =
Get-SPPerformancePointServiceApplicationTrustedLocation -Identity fab6396b-5cd3-4f17-be60-57ae7d18c8a6
9. 移除一个信任位置
$trustedLocation =
Get-SPPerformancePointServiceApplicationTrustedLocation
-Identity fab6396b-5cd3-4f17-be60-57ae7d18c8a6
Remove-SPPerformancePointServiceApplicationTrustedLocation
$trustedLocation
10. 配置PerformancePoint Service强制信任位置
内容位置
Set-SPPerformancePointServiceApplication -Identity
"PerformancePoint Service Application"
–TrustedContentLocationsRestricted $true
数据源位置
Set-SPPerformancePointServiceApplication -Identity
"PerformancePoint Service Application"
–TrustedDataSourceLocationsRestricted $true
11. 配置PerformancePoint Service应用程序设置
Set-SPPerformancePointServiceApplication -Identity
"PerformancePoint Service Application" –CommentsDisabled $false
–CommentsScorecardMax 100
SharePoint PerformancePoint Service-PowerShell的更多相关文章
- SharePoint excel service web part 连接到 filter web part
本文讲述SharePoint excel service web part 连接到 filter web part的一个简单应用场景. SharePoint excel service web par ...
- SharePoint Web service and template
SharePoint Web service对应的映射列表 WSS Web Services Web Reference Administration Service http://<s ...
- SharePoint PerformancePoint开发实例
前言 由于工作的原因,有一段时间没有发新的随笔了,最近使用了SharePoint PerformancePoint做了一些报表,与大家分享经验. 本文完全原创,转载请说明出处,希望对大家有用. 阅读目 ...
- Sharepoint2013商务智能学习笔记之Performancepoint service 配置(九)
1)配置Performance Service服务 第一步,新建performance service.先在管理中心,系统设置区域点击管理服务器上的服务,确认Performance Service服务 ...
- 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 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 ...
随机推荐
- python实现模拟登录【转】
原文网址:http://www.blogjava.net/hongqiang/archive/2012/08/01/384552.html 本文主要用python实现了对网站的模拟登录.通过自己构造p ...
- [转]iOS之浅谈纯代码控制UIViewController视图控制器跳转界面的几种方法
参考:http://www.mamicode.com/info-detail-469709.html 一.最普通的视图控制器UIViewContoller 一个普通的视图控制器一般只有模态跳转的功能( ...
- arm-linux-gcc中对“inline”的处理
C++对于关键字“inline”的处理大家都知道,C++编译器对于内敛函数就是把它当做一个宏展开.这样可能会增加程序的代码量,却可以减少程序入栈和出栈的此处,从而影响程序的执行速度.但是,C语言中扩展 ...
- html 5 中的 6位 十六进制颜色码 代表的意思
人的眼睛看到的颜色有两种: ⒈ 一种是发光体发出的颜色,比如计算机显示器屏幕显示的颜色: ⒉ 另一种是物体本身不发光,而是反射的光产生 十六进制颜色码 的颜色,比如看报纸和杂志上的颜色. 我们又知道任 ...
- python之--条件判断和循环
Python之判断 和其他语言一样,python同样具有条件判断和循环的操作,比如我们可以编写一个简单的判断操作:使用if关键字可以达到判断的效果,如下例: >>> test_if ...
- Maven安装与更新
Maven是Apache组织中的一个颇为成功的开源项目,主要服务于基于Java平 台的项目构建.依赖管理和项目信息管理: 1) Maven是跨平台的,在Windows.Linux和Mac上都可以使用: ...
- 李洪强iOS开发之-环信02.1_环信 SDK 2.x到3.0升级文档
李洪强iOS开发之-环信02.1_环信 SDK 2.x到3.0升级文档 SDK 2.x 至 3.0 升级指南 环信 SDK 3.0 升级文档 3.0 中的核心类为 EMClient 类,通过 EMCl ...
- Benefits of Cold Showers: 7 Reasons Why Taking Cool Showers Is Good For Your Health
Benefits of Cold Showers: 7 Reasons Why Taking Cool Showers Is Good For Your Health Most of us have ...
- 使用jQuery实现简单的拖动效果
转自:http://www.muzilei.com/archives/136 如何实现拖动效果? 浏览DEMO 首先分析下拖动效果原理: 1.当鼠标在被拖动对象上按下鼠标(触发onmousedown事 ...
- HDU1394-Minimum Inversion Number
http://acm.hdu.edu.cn/showproblem.php?pid=1394 Minimum Inversion Number Time Limit: 2000/1000 MS (Ja ...