你当前正在访问 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 '421599eb-eed7-4988-9b31-02b43a4d37b8'"
ObjectId AppId DisplayName
-------- ----- -----------
ed192e92-84d4-4baf-997d-1e190a81f28e 421599eb-eed7-4988-9b31-02b43a4d37b8 MyNewApp
此命令按 ID 获取应用程序。
通过 identifierUris 检索应用程序
Get-AzureADApplication -Filter "identifierUris/any(uri:uri eq 'http://wingtips.wingtiptoysonline.com')"
ObjectId AppId DisplayName
-------- ----- -----------
9393a401-bc8a-41a9-8f20-6b073d247b17 29ee07a3-df6e-4660-a32f-918ea550f235 Wingtips Online
此命令按 identifierUris 获取应用程序。
参数
-All
如果为 true,则返回所有应用程序。 如果为 false,则返回由 Top 参数指定的对象数
类型: | Boolean |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Filter
指定 oData v3.0 筛选器语句。 此参数控制返回的对象。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ObjectId
在 Microsoft Entra ID 中指定应用程序的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-SearchString
指定搜索字符串。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Top
指定要返回的最大记录数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
备注
请参阅 Get-AzureADApplication 到 Microsoft Graph PowerShell 的迁移指南。