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. 加密算法 - RSA算法一

    RSA算法原理(一)  声明: 本文转自 -- 作者: 阮一峰 (http://www.ruanyifeng.com/blog/2013/06/rsa_algorithm_part_one.html) ...

  2. iOS性能调优

    写在前面 本文来自iOS Tutorial Team 的 Marcelo Fabri,他是Movile的一名 iOS 程序员.这是他的个人网站:http://www.marcelofabri.com/ ...

  3. my9.23(输入输出,写操作)

    #include <iostream> #include <fstream> using namespace std; void write(int data,int len) ...

  4. Central Europe Regional Contest 2012 Problem I: The Dragon and the Knights

    一个简单的题: 感觉像计算几何,其实并用不到什么计算几何的知识: 方法: 首先对每条边判断一下,看他们能够把平面分成多少份: 然后用边来对点划分集合,首先初始化为一个集合: 最后如果点的集合等于平面的 ...

  5. Codeforces Round #198 (Div. 2) —— B

    B题是一个计算几何的题,虽然以前看过计算几何的ppt,但一直都没有写过: 昨晚比赛的时候本来想写的,但是怕不熟练浪费时间,太可惜了! 其实没必要选出一个最大的矩形: 以矩形的一条对角线为轴,向上或者向 ...

  6. mysql优化案例

    MySQL优化案例 Mysql5.1大表分区效率测试 Mysql5.1大表分区效率测试MySQL | add at 2009-03-27 12:29:31 by PConline | view:60, ...

  7. PYTHON---FILE IO

    import pickle shoplistfile = 'shoplist.data' shoplist = ['apple', 'mango', 'carrot'] f = open(shopli ...

  8. *[hackerrank]Tree Covering

    https://www.hackerrank.com/contests/illuminati/challenges/tree-covering 这道题先是在上次交流讨论了一下,然后两位百度的朋友先写完 ...

  9. 窗口的子类化与超类化——子类化是窗口实例级别的,超类化是在窗口类(WNDCLASS)级别的

    1. 子类化 理论:子类化是这样一种技术,它允许一个应用程序截获发往另一个窗口的消息.一个应用程序通过截获属于另一个窗口的消息,从而实现增加.监视或者修改那个窗口的缺省行为.子类化是用来改变或者扩展一 ...

  10. QWidget与HWND的互相转换

    QWidget与HWND的互相转换 在编写Windows的应用程序时,我们有时不可避免地要与Windows平台固有的Win32 API打交道,但是Win32 API里面常常用到的HWND等诸多句柄QT ...