Users' photos are not displayed on User Details pages in the Information Centric Analytics (ICA) console after integrating ICA with Active Directory (AD), running the Bay Dynamics AD Connector Job, and running the nightly RiskFabric Processing job.
Release : 6.x
Component : Active Directory Connector Utility
By default, the AD Connector Utility does not import users' thumbnail photos. Per the utility's readme.txt file, this is an optional setting configured in the database:
"Note that thumbNailPhoto for Users is disabled by default. To enable it, set IsEnabled=1 in MetadataAttributes for the thumbNailPhoto entry."
To enable thumbnail photos for users, follow this procedure:
UPDATE ActiveDirectoryDW.dbo.MetadataAttributes
SET IsEnabled = 1
WHERE ApiAttributeName = 'thumbNailPhoto';
SELECT IsEnabled FROM ActiveDirectoryDW.dbo.MetadataAttributes WHERE ApiAttributeName = 'thumbNailPhoto';
After enabling this setting, the Bay Dynamics AD Connector Job must be run, followed by the nightly RiskFabric Processing job, in order to import thumbnail photos from AD and update users' details in ICA. These jobs will run according to their assigned schedules or you can start them manually via SSMS.
To start each job using SSMS, follow this procedure: