在「SharePoint 2013技巧分享系列 - Active Directory同步顯示用戶照片」文中介紹瞭如何同步Active Directory顯示用戶照片,可是同步完成後,用戶照片尺寸和清晰度都不是很是理想。本文將介紹如何同步Exchange Server顯示高清用戶照片。html
原理json
與SharePoint Server 2010類似, 在SharePoint Server 2013中存在一個用戶照片的目錄。當SharePoint啓用Exchange照片同步時, SharePoint將使用Exchange Server 2013 做爲照片存取目錄, 而SharePoint本地照片目錄將被屏蔽,也就是說,設置SharePoint-Exchange照片同步後,將不容許用戶經過SharePoint修改其頭像照片。在Central Administration - User Profile - Manage User Profiles中能夠看到Picture屬性顯示「You can't change this person's photo because it is synchronized with Microsoft Exchange.". 服務器
須要注意的是,在進行同步設置時,要對Exchange Server進行簡單的配置,而且須要從新啓動IIS。 而在SharePoint 2013中須要配置相關權限和服務,使SharePoint 2013可以鏈接Exchange Server並獲取用戶數據。app
環境實例測試
爲了不誤解,這裏咱們實現定義一些環境配置,方便在詳細步驟中調用:this
1. SharePoint Server 2013 (http://people), 須要添加Alternate Access映射https://people. 該鏈接指向My Site。 server
2. Exchange 2013 Client Access server (FQDN) http://e15fe.test.com。xml
3. Exchange 2013 Mailbox server (FQDN) http://e15be.test.com。 確認測試用戶賬號已經建立, 例如 kevin@test.com。 另外確認高清照片已經上傳。htm
4. 添加DNS record, 使autodiscover.test.com指向http://e15fe.test.com。blog
步驟
確認以上全部配置後,咱們將進行如下幾個步驟的配置 。
第一步,添加Exchange 2013 Autodiscover服務,在Exchange Management Shell command中運行如下命令,
Get-ClientAccessServer | Set-ClientAccessServer -AutoDiscoverServiceInternalUri https://autodiscover.test.com/autodiscover/autodiscover.xml
第二步, SharePoint 2013 使用外部鏈接EWS和ECP讀取Exchange 2013 用戶照片數據。 如今咱們須要使用Exchange Management Shell command運行,
Get-WebServicesVirtualDirectory | Set-WebServicesVirtualDirectory –InternalUrl https://e15fe.test.com/ews/exchange.asmx –ExternalUrl https://e15fe.test.com/ews/exchange.asmx
Get-EcpVirtualDirectory | Set-EcpVirtualDirectory –InternalUrl https://e15fe.test.com/ecp –ExternalUrl https://e15fe.test.com/ecp
第三步,完成以上Exchange server配置後,須要在SharePoint 2013安裝Exchange Web Services Managed API v2.0,而且將Microsoft.Exchange.WebServices.dll載入到GAC中。 這一步驟咱們須要使用.NET 4中的命令GacUtil,因此,在進行這一步驟前,請確認.Net 4.0 SDK已經安裝在服務器上。完成安裝後,在PowerShell中運行如下命令載入Microsoft.Exchange.WebServices.dll。 載入完成後,須要從新啓動IIS。
Set-location "C:\Program Files\Microsoft\Exchange\Web Services\2.0"
[System.Reflection.Assembly]::Load("System.EnterpriseServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")
$publish = New-Object System.EnterpriseServices.Internal.Publish
$publish.GacInstall("c:\Program Files\Microsoft\Exchange\Web Services\2.0\Microsoft.Exchange.WebServices.dll")
iisreset
第四步,在SharePoint 2013中配置S2SOAuth,使用SharePoint 2013 Management Shell command運行如下命令:
New-SPTrustedSecurityTokenIssuer -name "Exchange" -MetadataEndPoint "https://email.test.com/autodiscover/metadata/json/1"
$sts=Get-SPSecurityTokenServiceConfig
$sts.HybridStsSelectionEnabled = $true
$sts.AllowMetadataOverHttp = $false
$sts.AllowOAuthOverHttp = $false
$sts.Update()
$exchange=Get-SPTrustedSecurityTokenIssuer "Exchange"
$app=Get-SPAppPrincipal -Site http://people -NameIdentifier $exchange.NameId
$site=Get-SPSite http://people
Set-SPAppPrincipalPermission -AppPrincipal $app -Site $site.RootWeb -Scope sitesubscription -Right fullcontrol -EnableAppOnlyPolicy
第五步, 在Exchange server中配置S2SOAuth,在Exchange Management Shell中運行如下命令
cd \Program Files\Microsoft\Exchange Server\V15\Scripts>
.\Configure-EnterprisePartnerApplication.ps1 -AuthMetadataUrl https://people/_layouts/15/metadata/json/1 -ApplicationType sharepoint
完成以上命令後,須要重啓IIS,
iisreset e15fe
iisreset e15be
第六步,配置SharePoint 2013 和Exchange server照片同步
$wa = Get-SPWebApplication http://people
$wa.Properties["ExchangeAutodiscoverDomain"] = "email.test.com"
$wa.UserPhotoImportEnabled = $true
$wa.UserPhotoErrorExpiration = 1.0
$wa.UserPhotoExpiration = 6.0
$wa.Update()
完成以上步驟後,使用測試賬戶登錄進入http://people,刷新後便可從Exchange服務器獲取高清用戶照片。
須要注意的是,若是仍舊顯示Active Directory小照片,能夠在Central Administration - User Profile Service - Manage User Properties中,編輯Picture屬性,刪除其中Active Directory映射的Property Mapping for Synchronization,而後」Start Full Profile Synchronization「便可。
對比顯示結果:
同步前
同步後
在http://people中大照片顯示對比更加明顯,這裏就再也不上傳了。
若是你有更好的建議和方法,歡迎留言討論。