从本地 Active Directory 同步用户后,OU 信息在 Azure 中不可用
OU Information Not Available In Azure After Syncing User From On Prem Active Directory
我在活动目录中创建了一个组织单元,并在该 OU 中添加了一个用户。
DistinguishedName : CN=Alex Shaun,OU=TestOU,DC=mydomain,DC=com
Enabled : True
GivenName : Alex
Name : Alex Shaun
ObjectClass : user
ObjectGUID : 16fc9afc-02a5-474f-8837-4e71853y1ceb
SamAccountName : alex
SID : S-1-5-21-233531163-xxxxxxx-2764101054-1604
Surname : Shaun
UserPrincipalName : alex@mydomain.com
完成后,我使用 azure ad connect 将该用户同步到我的 azure 中。现在我正在使用 Microsoft Azure API 来获取用户信息,但它不包含任何关于 OU 的信息。
{
"businessPhones": [],
"displayName": "Alex Shaun",
"givenName": "Alex",
"jobTitle": null,
"mail": null,
"mobilePhone": null,
"officeLocation": null,
"preferredLanguage": null,
"surname": "Shaun",
"userPrincipalName": "alex@mydomain.com",
"id": "xxxx-0744-47cb-ad48-xxxxxxxx"
},
Azure Active Directory 是一个平面结构,包含用户、组和计算机对象
Azure Active Directory 没有 OU
因此,您将无法在 Azure Active Directory 中看到 OU 信息
我在活动目录中创建了一个组织单元,并在该 OU 中添加了一个用户。
DistinguishedName : CN=Alex Shaun,OU=TestOU,DC=mydomain,DC=com
Enabled : True
GivenName : Alex Name : Alex Shaun
ObjectClass : user ObjectGUID : 16fc9afc-02a5-474f-8837-4e71853y1ceb
SamAccountName : alex SID : S-1-5-21-233531163-xxxxxxx-2764101054-1604
Surname : Shaun
UserPrincipalName : alex@mydomain.com
完成后,我使用 azure ad connect 将该用户同步到我的 azure 中。现在我正在使用 Microsoft Azure API 来获取用户信息,但它不包含任何关于 OU 的信息。
{
"businessPhones": [],
"displayName": "Alex Shaun",
"givenName": "Alex",
"jobTitle": null,
"mail": null,
"mobilePhone": null,
"officeLocation": null,
"preferredLanguage": null,
"surname": "Shaun",
"userPrincipalName": "alex@mydomain.com",
"id": "xxxx-0744-47cb-ad48-xxxxxxxx"
},
Azure Active Directory 是一个平面结构,包含用户、组和计算机对象
Azure Active Directory 没有 OU
因此,您将无法在 Azure Active Directory 中看到 OU 信息