我之前从未与Powershell或Sharepoint合作,试图帮助朋友,所以我的错误可能非常明显,我提前道歉。
所以我在这里要做的是: - 遍历所有用户配置文件并... -loop嵌套的foreach循环中已经存在的列表 -compare当前用户的DisplayName到当前列表项的“Employee”字段。如果匹配,则更新该列表项的每个字段。 - 如果我们遍历整个列表并且没有匹配项,请添加一个新的列表项。
这是我发现并帮助了我很多的东西:
http://mysharepointwork.blogspot.no/2010/09/addupdatedelete-list-items-using.html
这是我的代码:
#Add SharePoint PowerShell SnapIn if not already added
if ((Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null) {
Add-PSSnapin "Microsoft.SharePoint.PowerShell"
}
$site = new-object Microsoft.SharePoint.SPSite("http://sp2016:85/");
$ServiceContext = [Microsoft.SharePoint.SPServiceContext]::GetContext($site);
#Get UserProfileManager from the My Site Host Site context
$ProfileManager = new-object Microsoft.Office.Server.UserProfiles.UserProfileManager($ServiceContext)
$AllProfiles = $ProfileManager.GetEnumerator()
#Open SharePoint List
$SPServer="http://sp2016:85/"
$SPAppList="/Lists/UPList2/"
$spWeb = Get-SPWeb $SPServer
$spData = $spWeb.GetList($SPAppList)
foreach($profile in $AllProfiles)
{
#Add properties to this list item
$DisplayName = $profile.DisplayName
$Office = $profile[[Microsoft.Office.Server.UserProfiles.PropertyConstants]::Office].Value
$WorkPhone = $profile[[Microsoft.Office.Server.UserProfiles.PropertyConstants]::WorkPhone].Value
foreach($Items in $spData)
{
$SPItem = $spData.Items
if ($DisplayName -match $SPItem["Employee"] )
{
$SPItem["Office"] = $Office
$SPItem["Extension"] = $WorkPhone
$SPItem.Update()
{break}
}
}
#Create a new item
$newItem = $spData.Items.Add()
#Fill
$newItem["Employee"] = $DisplayName
$newItem["Office"] = $Office
$newItem["Extension"] = $WorkPhone
write-host "Profile for account ", $DisplayName
$newItem.Update()
}
write-host "Finished."
$site.Dispose()
- 添加新项目部分似乎有效,但不是更新项目。我假设,我的if语句或我的第二个for循环都是问题所在。
对于如何更有效地发布问题表示赞赏和/或反馈。 Stack Exchange菜鸟警报。谢谢大家!