尝试强迫自己开始通过 powershell 使用 graph,因为看起来 AzureAD powershell 命令行在某些时候会走向灭绝。想知道是否有办法使用 get-mguser 来获取 extensionAttribute5。
我知道您必须使用expandedproperties才能获得onpremextensions。您还必须使用beta模式来查看扩展属性。我迷茫的地方是如何找出单个属性(如果您可以的话)。
例如,(get-azureaduser -SearchString "NAME").objectID
将返回获取的用户的 azureobjectID。我正在寻找与 get-mguser 扩展属性类似的内容。
到目前为止,我已经在谷歌上搜索了太多次,我想我可能想错了。抱歉!任何帮助或指点都将不胜感激。
答案1
回答晚了,但你需要使用onPremisesExtensionAttributes获取所有扩展属性。
这对我有用:
Get-MgUser -UserId 7049a62d-0091-4ddb-9e2a-e02ac57f489a -Property onPremisesExtensionAttributes | select -ExpandProperty onPremisesExtensionAttributes | select -ExpandProperty ExtensionAttribute5