gpt4 book ai didi

powershell - Office365 - 如何在 powershell 中使用 ImmutableId 检索 UPN?

转载 作者:行者123 更新时间:2023-12-03 00:15:05 25 4
gpt4 key购买 nike

我有一个 Office 365 用户的 immutableid。如何使用 powershell 我可以检索相应用户的 UPN?

最佳答案

在 Powershell 中,可以使用对象标识符在 Azure AD 中查询用户。

$msolcred = get-credential
connect-msolservice -credential $msolcred
get-msoluser -ObjectId "{guid:object_identifier}"

enter image description here

更新#1 : 通过 ImmutableId 查询用户
get-msoluser | Where-Object {$_.ImmutableId -eq "zYGi36Y8tkCwX4lYBb8bUA=="}

enter image description here

更新#1:

另一个替代选项是使用 Microsoft Graph API,而不是使用 PowerShell get-msoluser 模块:
https://graph.microsoft.com/v1.0/users?$filter=onPremisesImmutableId+eq+'zYGi36Y8tkCwX4lYBb8bUA=='

关于powershell - Office365 - 如何在 powershell 中使用 ImmutableId 检索 UPN?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37043549/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com