你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzureADContact
从 Azure Active Directory 获取联系人。
语法
Get-AzureADContact
[-All <Boolean>]
[-Top <Int32>]
[-Filter <String>]
[<CommonParameters>]
Get-AzureADContact
-ObjectId <String>
[-All <Boolean>]
[<CommonParameters>]
说明
Get-AzureADContact cmdlet 从 Azure Active Directory 获取联系人。
示例
示例 1 检索目录中的所有联系人对象
PS C:\> Get-AzureADContact
ObjectId Mail DisplayName
-------- ---- -----------
b052db07-e7ec-4c0e-b481-a5ba550b9ee7 contact@contoso.com Contoso Contact
此命令检索目录中的所有联系人对象。
示例 2 使用 filter 参数检索一个联系人
PS C:\> Get-AzureADContact -All $true -Filter "mail -eq 'contact@contoso.com'"
ObjectId Mail DisplayName
-------- ---- -----------
b052db07-e7ec-4c0e-b481-a5ba550b9ee7 contact@contoso.com Contoso Contact
参数
-All
如果为 true,则返回所有联系人。 如果为 false,则返回由 Top 参数指定的对象数
类型: | Boolean |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Filter
指定 oData v3.0 筛选器语句。 此参数控制返回的对象。
类型: | String |
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 |
备注
请参阅 Get-AzureADContact 到 Microsoft Graph PowerShell 的迁移指南。