你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Select-AzureADGroupIdsUserIsMemberOf
选择用户所属的组。
语法
Select-AzureADGroupIdsUserIsMemberOf
-ObjectId <String>
-GroupIdsForMembershipCheck <GroupIdsForMembershipCheck>
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[<CommonParameters>]
说明
Select-AzureADGroupIdsUserIsMemberOf cmdlet 在 Azure Actve Directory (AD) 中选择用户所属的组。
示例
示例 1:获取用户的组成员身份
PS C:\> $Groups = New-Object Microsoft.Open.AzureAD.Model.GroupIdsForMembershipCheck
PS C:\> $Groups.GroupIds = (Get-AzureADGroup -Top 1).ObjectId
PS C:\> $UserID = (Get-AzureADUser -Top 1).ObjectId
PS C:\> Select-AzureADGroupIdsUserIsMemberOf -ObjectId $UserId -GroupIdsForMembershipCheck $Groups
OdataMetadata Value
------------- -----
https://graph.windows.net/85b5ff1e-0402-400c-9e3c-0f9e965325d1/$metadata#Collection(Edm.String) {093fc0e2-1d6e-4a1b-9bf8-effa0196f1f7}
第一个命令创建 GroupIdsForMembershipCheck 对象,然后将其存储在 $Groups 变量中。
第二个命令使用 Get-AzureADGroup (./Get-AzureADGroup.md) cmdlet 获取组的 ID,然后将其存储为 $Groups 属性。
第三个命令使用 Get-AzureADUser (./Get-AzureADUser.md) cmdlet 获取用户的 ID,然后将其存储在 $UserId 变量中。
最后一个命令获取$UserId标识的用户的组成员身份。 此 cmdlet 返回 oData 对象。 若要查找此用户所属的组,请循环访问返回的 oData 对象的 Value 属性。
参数
-GroupIdsForMembershipCheck
指定组对象 ID 的数组。
类型: | GroupIdsForMembershipCheck |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-InformationAction
指定此 cmdlet 如何响应信息事件。 此参数的可接受值为:
- 继续
- 忽略
- 查询
- SilentlyContinue
- 停止
- 挂起
类型: | ActionPreference |
别名: | infa |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InformationVariable
指定信息变量。
类型: | String |
别名: | iv |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ObjectId
将用户 ID 指定为 Azure AD 中的 UPN 或 ObjectId) (。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |