
jcolemn3 asked a question.
How is user information synced with wd_user table
I have intune set as the deployment technology. Is the user information present in the wd_user table pulled solely from intune? If so, how is this data pulled? Is there a way to see the columns returned from the graph call for intune? I'm noticing differences between what's present in Intune for the user (ms entra) vs what is present in the wd_user table.
@CharlesW (Flexera Software)​ do you have that graph call handy?
@jcolemn3​ as an alternative, you could set the sync settings to Not Defined and write your own script to pull Entra ID information into a custom table and then write a custom user sync query that pulls from the custom table.
The endpoint is similar to the following :
(GET): https://graph.microsoft.com/v1.0/users?$select=id, givenName, displayName, onPremisesDistinguishedName, onPremisesSamAccountName, onPremisesUserPrincipalName, mail, onPremisesDomainName&$top=1000
The exact properties in the select are as follows:
Id,
DisplayName,
Surname,
GivenName,
x.JobTitle,
x.OfficeLocation,
x.PostalCode,
x.Department,
CompanyName,
StreetAddress,
City,
State,
Country,
Mail,
UserPrincipalName,
OnPremisesSamAccountName,
OnPremisesUserPrincipalName,
OnPremisesDistinguishedName,
OnPremisesDomainName
top=1000 reflects the page file size you have set under settings->deployment-comment. This endpoint is called once for each page of data. We derive the unique user name by getting the users domain from OnPremisesUserPrincipal name, and splitting it at the @