日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > asp.net >内容正文

asp.net

根据XML更新Userprofile

發(fā)布時間:2023/12/20 asp.net 22 豆豆
生活随笔 收集整理的這篇文章主要介紹了 根据XML更新Userprofile 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
#  Using powershell code, update the user profile base on the XML file.
#  Date: 2015-01-29


# Update New User Property$snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'} if ($snapin -eq $null) { Write-Host "Loading SharePoint Powershell Snapin..." Add-PSSnapin "Microsoft.SharePoint.Powershell" Write-Host "SharePoint Powershell Snapin Loaded" } # Get XML Configuration file [xml]$xmlData=Get-Content "C:\xxxx\xxxx.xml" -Encoding UTF8# Get Connection to MySite$MySite = Get-SPSite -Identity "http://xxxxxx"# Get Context $context = Get-SPServiceContext($MySite)# Get UserProfileManager Object $ProfileMngr = New-Object Microsoft.Office.Server.UserProfiles.UserProfileManager($context)# Get All User Profiles #$profiles = $ProfileMngr.GetEnumerator()$xmlData.Users.UserName | ForEach-Object{if ($ProfileMngr.UserExists($_.Name) -eq $false){$ProfileMngr.CreateUserProfile($_.Name)}$userprofile = $ProfileMngr.GetUserProfile($_.Name)$userprofile["DP-JobNo"].value = $_.JobNo.Name$userprofile["PreferredName"].value = $_.PreferredName.Name$userprofile["DP-CompanyCode"].value = $_.CompanyCode.Name$userprofile["DP-Company"].value = $_.Company.Name$userprofile["DP-Department"].value = $_.Department.Name$userprofile["DP-ReportToLeader"].value = $_.ReportTo.Name$userprofile["DP-CostCentre"].value = $_.CostCentre.Name$userprofile.Commit()Write-Host -f Yellow $_.Name "Done"} <User Name="xx\xx"><Chinese Name="xxx"/><Title Name=""/><CostCenter Name="xxx"/><Report Name="xxxxx"/><Company Name="xxxx"/><Bank Name="xxxxxx"/><Internal Name=""/><Sap Name=""/><IsSales Name="False"/><IsService Name="False"/> </User>

?

轉(zhuǎn)載于:https://www.cnblogs.com/batter152/p/4244456.html

總結(jié)

以上是生活随笔為你收集整理的根据XML更新Userprofile的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。