User photos are not imported from Active Directory

I have configured the User Profile Service Application to import user photographs from Active Directory (we already have these displayed in Outlook and Lync).  However, even though I have configured the Picture property to map to the thumbnailPhoto attribute and run a full synchronization the pictures still do not appear.

The answer to this problem is the Update-SPProfilePhotoStore cmdlet:

Update-SPProfilePhotoStore -CreateThumbnailsForImportedPhotos 1 -MySiteHostLocation http://mysite.mydomain.local

Update-SPProfilePhotoStore

Also, if you are importing pictures from a different domain then you will likely need to set the CrossDomainPhotosEnabled property of the web application to true:

$wa = Get-SPWebApplication http://intranet.mydomain.local
$wa
.CrossDomainPhotosEnabled = $true
$wa.Update()

[BlogBookmark] [Blogsvine] [del.icio.us] [Digg] [Facebook] [Furl] [Google] [LinkedIn] [MySpace] [Reddit] [Slashdot] [StumbleUpon] [Twitter] [Windows Live] [Yahoo!] [Email]