你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzureADApplication
获取应用程序。
语法
Get-AzureADApplication
[-All <Boolean>]
[-Top <Int32>]
[-Filter <String>]
[<CommonParameters>]
Get-AzureADApplication
[-SearchString <String>]
[-All <Boolean>]
[<CommonParameters>]
Get-AzureADApplication
-ObjectId <String>
[-All <Boolean>]
[<CommonParameters>]
说明
Get-AzureADApplication cmdlet 获取 Azure Active Directory 应用程序。
示例
示例 1:按显示名称获取应用程序
PS C:\>Get-AzureADApplication -Filter "DisplayName eq 'TestName'"
ObjectId AppId DisplayName
-------- ----- -----------
3ddd22e7-a150-4bb3-b100-e410dea1cb84 36ee4c6c-0812-40a2-b820-b22ebd02bce3 TestName
此命令按应用程序的显示名称获取应用程序。
示例 2:按 ID 获取应用程序
PS C:\>Get-AzureADApplication -Filter "AppId eq 'ed192e92-84d4-4baf-997d-1e190a81f28e'"
此命令按 ID 获取应用程序。
输出:
ObjectId AppId DisplayName
-------- ----- -----------
ed192e92-84d4-4baf-997d-1e190a81f28e 36ee4c6c-0812-40a2-b820-b22ebd02bce3 MyNewApp
按 identifierUris 检索应用程序
Get-AzureADApplication -Filter "identifierUris/any(uri:uri eq 'http://wingtips.wingtiptoysonline.com')"
参数
-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 |
-SearchString
指定搜索字符串。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Top
指定要返回的最大记录数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |