Friday, 19 May 2017
Thursday, 18 May 2017
Account Deletion and SharePoint User Profile Synchronization
PowerShell Script:
$upa = Get-SPServiceApplication –Name "User Profile Service Application"
Set-SPProfileServiceApplication $upa -GetNonImportedObjects $true
Set-SPProfileServiceApplication $upa -PurgeNonImportedObjects $true
My Site Clean Up:
http://www.harbar.net/archive/2011/02/10/account-deletion-and-sharepoint-2010-user-profile-synchronization.aspx?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Harbar+(harbar.net)
$upa = Get-SPServiceApplication –Name "User Profile Service Application"
Set-SPProfileServiceApplication $upa -GetNonImportedObjects $true
Set-SPProfileServiceApplication $upa -PurgeNonImportedObjects $true
My Site Clean Up:
http://www.harbar.net/archive/2011/02/10/account-deletion-and-sharepoint-2010-user-profile-synchronization.aspx?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed:+Harbar+(harbar.net)
Default user profile property mappings for Active Directory Domain Services
When you upgrade from SharePoint Server 2010 to SharePoint Server 2013, the user profile mapping property WorkEmail retains the default mapping to mail (that is "WorkEmail" maps to "mail"), however when a new synchronization connection mapping property is created in SharePoint Server 2013, the new mapping defaults to the ProxyAddress property (that is, "mail" maps to "ProxyAddress"). After the upgrade process has been completed successfully, the mapping properties can be manually changed based on your organizational requirements.
| User profile property | AD DS attribute |
|---|---|
SPS-DistinguishedName
|
dn
|
SID
|
objectSid
|
Manager
|
manager
|
PreferredName
|
displayName
|
FirstName
|
givenName
|
LastName
|
sn
|
SPS-PhoneticDisplayName
|
msDS-PhoneticDisplayName
|
SPS-PhoneticFirstName
|
msDS-PhoneticFirstName
|
SPS-PhoneticLastName
|
msDS-PhoneticLastName
|
WorkPhone
|
telephoneNumber
|
WorkEmail
|
Mail/proxyAddress
|
Office
|
physicalDeliveryOfficeName
|
SPS-JobTitle
|
title
|
Department
|
department
|
UserName
|
sAMAccountName
|
PublicSiteRedirect
|
wWWHomePage
|
SPS-ProxyAddresses
|
proxyAddresses
|
SPS-SourceObjectDN
|
msDS-SourceObjectDN
|
SPS-ClaimID
|
<specific to connection>
|
SPS-ClaimProviderID
|
<specific to connection>
|
SPS-ClaimProviderType
|
<specific to connection>
|
My Sites in SharePoint 2013
http://blog.sharedove.com/adisjugo/index.php/2012/07/25/visual-guide-setting-up-my-sites-in-sharepoint-2013/
Subscribe to:
Comments (Atom)