powershell PS SP用户配置文件获取用户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PS SP用户配置文件获取用户相关的知识,希望对你有一定的参考价值。

#Get Site for Service context
$Site = Get-SPSite -Limit 1
$ServiceContext = Get-SPServiceContext($Site)
$ProfileManager = new-object Microsoft.Office.Server.UserProfiles.UserProfileManager($ServiceContext)
#$profiles = $ProfileManager.GetEnumerator()    #Load all profiles into array
$cnt = 0
foreach($usrProfile in $profileManager.GetEnumerator()) {
    $cnt += 1
    Write-Host $usrProfile.AccountName "|" $usrProfile.DisplayName;
}
write-host "Total users in the User Profile: $cnt"

以上是关于powershell PS SP用户配置文件获取用户的主要内容,如果未能解决你的问题,请参考以下文章

powershell SP PS用户配置文件AD权限

powershell PS SP比较字段

powershell PS SP列出所有工作流程

powershell PS SP搜索工作流程组件

powershell PS SP将列表导出为CSV

Microsoft SharePoint Server 2016 部署文档