Hi. My SharePoint CA report this as a warning:
|
Service: UserProfileService
I followed my old way in SP 2010:
$upap = Get-SPServiceApplicationProxy | ? {$_.TypeName -like "*User Profile Service Application*"}
Add-SPProfileLeader $upap MyDomain\CEOAccount
After the 1st command, I checked $upap. It was not null.
By running the 2nd one, I got error:
Add-SPProfileLeader : UserProfileApplicationNotAvailableException_Logging ::
UserProfileApplicationProxy.ApplicationProperties ProfilePropertyCache does
not have 552fb83b-3007-4056-9ae2-7fdad22657a8
That's new. How to fix it? Thanks.
Eternal Snow