共用方式為


Get-AzureRmADApplication

列出現有的 Microsoft Entra 應用程式。

警告

自 2024 年 2 月 29 日起,AzureRM PowerShell 模組已正式淘汰。 建議使用者從 AzureRM 遷移至 Az PowerShell 模組,以確保持續支援和更新。

雖然 AzureRM 模組可能仍可運作,但不再維護或支援它,但會根據用戶的判斷權和風險放置任何繼續使用。 如需轉換至 Az 模組的指引,請參閱我們的 移轉資源

語法

Get-AzureRmADApplication
   [-DefaultProfile <IAzureContextContainer>]
   [-IncludeTotalCount]
   [-Skip <UInt64>]
   [-First <UInt64>]
   [<CommonParameters>]
Get-AzureRmADApplication
   -ObjectId <Guid>
   [-DefaultProfile <IAzureContextContainer>]
   [-IncludeTotalCount]
   [-Skip <UInt64>]
   [-First <UInt64>]
   [<CommonParameters>]
Get-AzureRmADApplication
   -ApplicationId <Guid>
   [-DefaultProfile <IAzureContextContainer>]
   [-IncludeTotalCount]
   [-Skip <UInt64>]
   [-First <UInt64>]
   [<CommonParameters>]
Get-AzureRmADApplication
   -DisplayNameStartWith <String>
   [-DefaultProfile <IAzureContextContainer>]
   [-IncludeTotalCount]
   [-Skip <UInt64>]
   [-First <UInt64>]
   [<CommonParameters>]
Get-AzureRmADApplication
   -DisplayName <String>
   [-DefaultProfile <IAzureContextContainer>]
   [-IncludeTotalCount]
   [-Skip <UInt64>]
   [-First <UInt64>]
   [<CommonParameters>]
Get-AzureRmADApplication
   -IdentifierUri <String>
   [-DefaultProfile <IAzureContextContainer>]
   [-IncludeTotalCount]
   [-Skip <UInt64>]
   [-First <UInt64>]
   [<CommonParameters>]

Description

列出現有的 Microsoft Entra 應用程式。 應用程式查閱可以透過 ObjectId、ApplicationId、IdentifierUri 或 DisplayName 來完成。 如果未提供任何參數,則會擷取租使用者下的所有應用程式。

範例

範例 1 - 列出所有應用程式

PS C:\> Get-AzureRmADApplication

列出租使用者下的所有應用程式。

範例 2 - 使用分頁列出應用程式

PS C:\> Get-AzureRmADApplication -First 100

列出租使用者下的前 100 個應用程式。

範例 3 - 依標識碼 URI 取得應用程式

PS C:\> Get-AzureRmADApplication -IdentifierUri http://mySecretApp1

取得標識碼 URI 為 “http://mySecretApp1"” 的應用程式。

範例 4 - 依物件識別碼取得應用程式

PS C:\> Get-AzureRmADApplication -ObjectId 39e64ec6-569b-4030-8e1c-c3c519a05d69

取得物件標識碼為 『39e64ec6-569b-4030-8e1c-c3c519a05d69』 的應用程式。

參數

-ApplicationId

要擷取之應用程式的應用程式標識碼。

類型:Guid
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶

類型:IAzureContextContainer
別名:AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-DisplayName

應用程式的顯示名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-DisplayNameStartWith

從顯示名稱開始擷取所有應用程式。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-First

要傳回的物件數目上限。

類型:UInt64
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-IdentifierUri

要擷取之應用程式的唯一標識碼 URI。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-IncludeTotalCount

報告數據集中的物件數目。 目前,此參數不會執行任何動作。

類型:SwitchParameter
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-ObjectId

要擷取之應用程式的物件標識碼。

類型:Guid
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Skip

忽略第一個 N 物件,然後取得其餘的物件。

類型:UInt64
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

輸入

Guid

String

輸出

PSADApplication