powershell PS SP用户配置文件权限
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PS SP用户配置文件权限相关的知识,希望对你有一定的参考价值。
$USPA = Get-SpServiceapplication | Where-Object {$_.TypeName -eq "User Profile Service Application"}
$sec = Get-SPServiceApplicationSecurity $USPA
#This is where I found the issue
$sec.AccessRules
#And here's how I fixed it
$account = New-SPClaimsPrincipal psns\psc28010sa -IdentityType WindowsSamAccountName
$sec = Get-SPServiceApplicationSecurity $USPA
Grant-SPObjectSecurity $sec -Principal $account -Rights "Full Control"
Set-SPServiceApplicationSecurity -Identity $USPA -ObjectSecurity $sec
以上是关于powershell PS SP用户配置文件权限的主要内容,如果未能解决你的问题,请参考以下文章
powershell PS SP用户配置文件获取用户
无法通过 Exchange 2010 SP1 上的 PowerShell 删除邮箱权限
powershell PS SP比较字段
如何使用 powershell 授予用户对证书私钥的权限?
powershell PS SP列出所有工作流程
powershell PS SP搜索工作流程组件