我如何获取用户所属的所有组和下属组的列表?或者我如何搜索特定的下属组?有谁知道这个命令吗?
答案1
您可以使用Azure AD PowerShell 模块以编程方式获取用户和组。这将允许您编写查询来获取用户,然后列出用户所在的任何组。
例如:
Get-AzureADUser -SearchString [email protected] | Get-AzureADUserMembership
我如何获取用户所属的所有组和下属组的列表?或者我如何搜索特定的下属组?有谁知道这个命令吗?
您可以使用Azure AD PowerShell 模块以编程方式获取用户和组。这将允许您编写查询来获取用户,然后列出用户所在的任何组。
例如:
Get-AzureADUser -SearchString [email protected] | Get-AzureADUserMembership