次の方法で共有


Get-AzureRmADApplication

既存の Microsoft Entra アプリケーションを一覧表示します。

警告

AzureRM PowerShell モジュールは、2024 年 2 月 29 日の時点で正式に非推奨になりました。 引き続きサポートを受け、更新を受け取れるようにするために、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>]

説明

既存の 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 - オブジェクト ID でアプリケーションを取得する

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

オブジェクト ID '39e64ec6-569b-4030-8e1c-c3c519a05d69' を持つアプリケーションを取得します。

パラメーター

-ApplicationId

フェッチするアプリケーションのアプリケーション ID。

型:Guid
Position:Named
既定値:None
必須:True
Accept pipeline input:True
Accept wildcard characters:False

-DefaultProfile

Azure との通信に使用される資格情報、アカウント、テナント、サブスクリプション

型:IAzureContextContainer
Aliases:AzureRmContext, AzureCredential
Position:Named
既定値:None
必須:False
Accept pipeline input:False
Accept wildcard characters:False

-DisplayName

アプリケーションの表示名。

型:String
Position:Named
既定値:None
必須:True
Accept pipeline input:True
Accept wildcard characters:False

-DisplayNameStartWith

表示名で始まるすべてのアプリケーションをフェッチします。

型:String
Position:Named
既定値:None
必須:True
Accept pipeline input:True
Accept wildcard characters:False

-First

返されるオブジェクトの最大数。

型:UInt64
Position:Named
既定値:None
必須:False
Accept pipeline input:False
Accept wildcard characters:False

-IdentifierUri

フェッチするアプリケーションの一意識別子 URI。

型:String
Position:Named
既定値:None
必須:True
Accept pipeline input:True
Accept wildcard characters:False

-IncludeTotalCount

データ セット内のオブジェクトの数を報告します。 現時点では、このパラメーターは何も行いません。

型:SwitchParameter
Position:Named
既定値:None
必須:False
Accept pipeline input:False
Accept wildcard characters:False

-ObjectId

フェッチするアプリケーションのオブジェクト ID。

型:Guid
Position:Named
既定値:None
必須:True
Accept pipeline input:True
Accept wildcard characters:False

-Skip

最初の N 個のオブジェクトを無視し、再メインオブジェクトを取得します。

型:UInt64
Position:Named
既定値:None
必須:False
Accept pipeline input:False
Accept wildcard characters:False

入力

Guid

String

出力

PSADApplication