azure - 身份 - 显示 GUID 而不是名称

标签 azure azure-active-directory

有人可以帮忙告诉我为什么下面这 4 个用户(红色圆圈内)在我在组查找中查看他们时在身份下显示 GUID 而不是他们的名字我该如何解决?这 4 个用户是最近添加的,它们是在本地 Active Directory 中以与其他用户相同的方式创建的。 抱歉我的英语不好,但希望你们能理解我。非常感谢

$DDLName = "Gold Coast"
$DDLProperties = Get-DynamicDistributionGroup -Identity $DDLName
Get-Recipient -RecipientPreviewFilter ($DDLProperties.RecipientFilter)

[1]: /image/snRP9.png

最佳答案

我尝试在我的环境中重现相同的结果并得到以下结果:

$DDLName = "DDLNAME"
$DDLProperties = Get-DynamicDistributionGroup -Identity $DDLName
Get-Recipient -RecipientPreviewFilter ($DDLProperties.RecipientFilter)

enter image description here

Note that: Microsoft updated the naming scheme for the user's Name parameter, being displayed as externaldirectoryobjectid. Refer this blog

要将 GUID 解析为名称,您可以使用 DisplayNameName 等参数。

(Get-Recipient 860047a6-a9bc-4d63-8d6f-XXXX).DisplayName

enter image description here

如果问题仍然存在,请检查用户是否处于事件状态并拥有 Office 365 许可证。

引用:

Changes in Exchange Mailbox Names and Distinguished Names by Tony Redmond

关于azure - 身份 - 显示 GUID 而不是名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74936068/

相关文章:

azure - 无法连接到 Azure Active Directory 安全 Ldap

Azure存储通过nodejs添加角色分配AD组

azure - 使用 Hololens 的虹膜扫描仪登录 Azure Active Directory B2C

azure - 发送邮件消息 : Unable to read data from the transport connection: net_io_connectionclosed

c# - 什么会阻止在 Azure 中的两个 Web API 应用程序之间建立连接?

Azure API管理Rest api获取所有订阅 key 抛出400错误代码

Azure Multi-Tenancy saas应用程序,如何按环境注册应用程序?

azure - 如果 Azure Active Directory 中的应用程序和 Azure 机器人位于两个不同的帐户中,我的团队机器人应用程序能否正常工作?

python - 多次登录才能通过 Azure AD 进行记录

.net - 如何确保新的自动缩放的 Azure 应用服务实例在处理流量之前处于正常状态?