gpt4 book ai didi

powershell - 使用 PnP 获取 SharePoint Online 的用户角色和权限

转载 作者:行者123 更新时间:2023-12-02 23:34:20 24 4
gpt4 key购买 nike

我希望使用 SharePoint-PnP 为网站集获取 SharePoint 组角色和权限。

我能够使用 $Web.SiteGroups 检索 SharePoint 组但未能找到获取角色和权限的属性。

使用以下代码片段检索组 ID、标题和描述。

#Import the required DLL
Import-Module 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll'
Import-Module 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll'
#OR
#Add-Type -Path 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.dll'
#Add-Type -Path 'C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\ISAPI\Microsoft.SharePoint.Client.Runtime.dll'

#Mysite URL
$site = 'https://test.test.com/sites/sitename'

#Admin User Principal Name
$admin = 'LoginID'

#Get Password as secure String
#$password = Read-Host 'Enter Password' -AsSecureString
$password = Read-Host -Prompt "Enter password" -AsSecureString


#Get the Client Context and Bind the Site Collection
$context = New-Object Microsoft.SharePoint.Client.ClientContext($site)

#Authenticate
$credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($admin , $password)
$context.Credentials = $credentials

$list = $context.Web.Lists.GetByTitle('ListName')

$web = $context.Web
$context.Load($web)
$context.Load($web.SiteGroups)
$context.Load($list)
$context.ExecuteQuery()

foreach($x in $web.SiteGroups)
{
Write-Host $x.Id
Write-Host $x.Title
Write-Host $x.Description
}
$list.Update()

我无法选择使用 SharePoint Online DLL,因为我无权以租户管理员身份运行脚本,但以网站集管理员身份运行。

如果这完全可以使用 PnP 来实现,那会很有帮助吗?欢迎任何其他解决方案。

最佳答案

试试这个 pnp 脚本来获取站点中的组角色和权限:

$cred = get-credential
Connect-PnPOnline -Url "https://tenant.sharepoint.com/sites/dev" -Credentials $cred
$web = Get-PnPWeb -Includes RoleAssignments
foreach($ra in $web.RoleAssignments) {
$member = $ra.Member
$loginName = get-pnpproperty -ClientObject $member -Property LoginName
$rolebindings = get-pnpproperty -ClientObject $ra -Property RoleDefinitionBindings
write-host "$($loginName) - $($rolebindings.Name)"
write-host
}

enter image description here

关于powershell - 使用 PnP 获取 SharePoint Online 的用户角色和权限,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59352609/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com