Delen via


Get-AzureRmADApplication

Bevat bestaande Microsoft Entra-toepassingen.

Waarschuwing

De AzureRM PowerShell-module is vanaf 29 februari 2024 officieel afgeschaft. Gebruikers wordt aangeraden om van AzureRM naar de Az PowerShell-module te migreren om ondersteuning en updates te garanderen.

Hoewel de AzureRM-module nog steeds kan functioneren, wordt deze niet meer onderhouden of ondersteund, waardoor het gebruik naar eigen goeddunken en risico van de gebruiker blijft bestaan. Raadpleeg onze migratiebronnen voor hulp bij de overgang naar de Az-module.

Syntax

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

Bevat bestaande Microsoft Entra-toepassingen. Het opzoeken van toepassingen kan worden uitgevoerd door ObjectId, ApplicationId, IdentifierUri of DisplayName. Als er geen parameter is opgegeven, worden alle toepassingen onder de tenant opgehaald.

Voorbeelden

Voorbeeld 1: alle toepassingen weergeven

PS C:\> Get-AzureRmADApplication

Een lijst met alle toepassingen onder een tenant.

Voorbeeld 2: toepassingen weergeven met paging

PS C:\> Get-AzureRmADApplication -First 100

Een lijst met de eerste 100 toepassingen onder een tenant.

Voorbeeld 3: toepassing ophalen op id-URI

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

Haalt de toepassing op met id-URI als 'http://mySecretApp1".

Voorbeeld 4: toepassing ophalen op object-id

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

Haalt de toepassing op met de object-id '39e64ec6-569b-4030-8e1c-c3c519a05d69'.

Parameters

-ApplicationId

De toepassings-id van de toepassing die moet worden opgehaald.

Type:Guid
Position:Named
standaardwaarde:None
Vereist:True
Accept pipeline input:True
Accept wildcard characters:False

-DefaultProfile

De referenties, het account, de tenant en het abonnement dat wordt gebruikt voor communicatie met Azure

Type:IAzureContextContainer
Aliases:AzureRmContext, AzureCredential
Position:Named
standaardwaarde:None
Vereist:False
Accept pipeline input:False
Accept wildcard characters:False

-DisplayName

De weergavenaam van de toepassing.

Type:String
Position:Named
standaardwaarde:None
Vereist:True
Accept pipeline input:True
Accept wildcard characters:False

-DisplayNameStartWith

Haal alle toepassingen op die beginnen met de weergavenaam.

Type:String
Position:Named
standaardwaarde:None
Vereist:True
Accept pipeline input:True
Accept wildcard characters:False

-First

Het maximum aantal objecten dat moet worden geretourneerd.

Type:UInt64
Position:Named
standaardwaarde:None
Vereist:False
Accept pipeline input:False
Accept wildcard characters:False

-IdentifierUri

Unieke id-URI van de toepassing die moet worden opgehaald.

Type:String
Position:Named
standaardwaarde:None
Vereist:True
Accept pipeline input:True
Accept wildcard characters:False

-IncludeTotalCount

Hiermee wordt het aantal objecten in de gegevensset gerapporteerd. Op dit moment doet deze parameter niets.

Type:SwitchParameter
Position:Named
standaardwaarde:None
Vereist:False
Accept pipeline input:False
Accept wildcard characters:False

-ObjectId

De object-id van de toepassing die moet worden opgehaald.

Type:Guid
Position:Named
standaardwaarde:None
Vereist:True
Accept pipeline input:True
Accept wildcard characters:False

-Skip

Negeert de eerste N-objecten en haalt vervolgens de resterende objecten op.

Type:UInt64
Position:Named
standaardwaarde:None
Vereist:False
Accept pipeline input:False
Accept wildcard characters:False

Invoerwaarden

Guid

String

Uitvoerwaarden

PSADApplication