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

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

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

  2. SharePoint Web service and template

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

  3. SharePoint PerformancePoint开发实例

    前言 由于工作的原因,有一段时间没有发新的随笔了,最近使用了SharePoint PerformancePoint做了一些报表,与大家分享经验. 本文完全原创,转载请说明出处,希望对大家有用. 阅读目 ...

  4. Sharepoint2013商务智能学习笔记之Performancepoint service 配置(九)

    1)配置Performance Service服务 第一步,新建performance service.先在管理中心,系统设置区域点击管理服务器上的服务,确认Performance Service服务 ...

  5. SharePoint 2013 使用PowerShell创建State Service

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

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

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

  7. SharePoint 2013 使用 PowerShell 更新用户

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

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

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

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

随机推荐

  1. Python学习_数据处理split方法

    用open方法导入文件“sketch.txt”后,用split()方法进行分割: >>> import os >>> os.chdir('C:/Python33/H ...

  2. (转)搜索Maven仓库 获取 groupid artifactId

    转载自:http://blog.csdn.net/z69183787/article/details/22188561 使用Maven进行开发的时候,比较常见的一个问题就是如何寻找我要的依赖,比如说, ...

  3. [原博客] POI系列(1)

    正规.严谨.精妙. -POI 发现POI(波兰信息学奥赛)的题都很有意思.于是开刷bzoj上的poi题目(按ac人数降序..).顺手写一写题解,加深印象. 为了防止一篇文章过于长,打算每五道题另起一篇 ...

  4. eclipse打开文件目录

    在MyEclipse开发中常用到其中一个"Open In Explorer"的小插件,可以直接进入Windows资源管理器中打开选中文件所在的目录,在使用eclipse开发时也很需 ...

  5. asp.net 登陆后在ashx处理程序中获取不到Session

    登录后存储Session,另一个页面Ajax请求 ashx页面,发现无法获取到Session,Session is NULL  使用“IReadOnlySessionState”这个接口就可以

  6. Eclipse+Maven+Spring+CXF 构建webservice 服务

    一. 软件准备 Eclipse 4.2.1 Maven 2.2.1 Spring 3.2.6 CXF 3.0.2 二. 步骤 首先,在Eclipse中用maven构建一个quickstart版本的ma ...

  7. android Button隐藏

    两种方式: xml方式 和 java代码方式: 可见(visible) XML文件:android:visibility="visible" Java代码:view.setVisi ...

  8. 【HDOJ】5096 ACM Rank

    Treap+set仿函数重定义.每当ac一道题目时,相当于对总时间减去一个大数. /* 5096 */ #include <iostream> #include <string> ...

  9. Unreachable catch block for IOException. This exception is never thrown from the try statement body

    Unreachable catch block for IOException. This exception is never thrown from the try statement body ...

  10. 用C++试着完成Python简明教程后面的练习

    试图存取文件的部分无法完成.代码已提交到github.