Hello
I have recently migrate Exchange from 2003 to 2010 SP3.
Domain Controller: Windows Server 2003
Exchange Server: Exchange Server 2010 SP3 on Windows Server 2012
Outlook Client: Outlook 2010/Outlook 2013
And now I am trying to configure outlook to view AD photo. So I uploaded a photo (10Kb) using below command on exchange management shell.
Import-RecipientDataProperty -Identity "user1@domain.local" -Picture -FileData ([Byte[]]$(Get-Content -Path "C:\Images\User1.jpg" -Encoding Byte -ReadCount 0))
Ref:
http://blogs.technet.com/b/exchange/archive/2010/03/10/3409495.aspx
thumbnailPhoto attribute also there in User properties.
But outlook doesn't show up the image on outlook. (even on online mode)
I have updated Global Address list Manually. (Other information updating successfully)
Get-OfflineAddressBook | Update-OfflineAddressBook
net stop MSExchangeFDS
net start MSExchangeFDS
Below command also export the uploaded image.
Export-RecipientDataProperty -Identity "user1@domain.local" -Picture | ForEach { $_.FileData | Add-Content C:\user1.jpg -Encoding Byte}
I followed many articles and threads, and still no luck on getting picture appear in outlook.
Please help.