你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzureADContactMembership
获取联系人成员身份。
语法
Get-AzureADContactMembership
-ObjectId <String>
[-All <Boolean>]
[-Top <Int32>]
[<CommonParameters>]
说明
Get-AzureADContactMembership cmdlet 在 Azure Active Directory 中获取联系人成员身份。
示例
示例 1:获取联系人的成员身份
PS C:\> $Contact = Get-AzureADContact -Top 1
PS C:\> Get-AzureADContactMembership -ObjectId $Contact.ObjectId
ObjectId ObjectType
-------- ----------
0015df25-808e-4715-9c24-a6929c25c201 Group
第一个命令使用 Get-AzureADContact cmdlet 获取联系人,然后将其存储在 $Contact 变量中。
第二个命令获取$Contact的成员身份。
参数
-All
如果为 true,则返回所有成员身份。 如果为 false,则返回 Top 参数指定的对象数
类型: | Boolean |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ObjectId
指定 Azure Active Directory 中联系人的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Top
指定要返回的最大记录数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |