Get-AzureADApplicationProxyApplication

Das Cmdlet Get-AzureADApplicationProxyApplication ruft eine Anwendung ab, die für Anwendungsproxy in Azure Active Directory konfiguriert ist.

Syntax

Get-AzureADApplicationProxyApplication
   -ObjectId <String>
   [<CommonParameters>]

Beschreibung

Das Cmdlet Get-AzureADApplicationProxyApplication ruft eine Anwendung ab, die für Anwendungsproxy in Azure Active Directory konfiguriert ist.

Beispiele

Beispiel 1

PS C:\> Get-AzureADApplicationProxyApplication -ObjectId 8d6c6684-6f8c-42e2-8914-32ed2adf9ccf

ExternalAuthenticationType               : AadPreAuthentication
ApplicationServerTimeout                 : Default
ExternalUrl                              : https://travel.cycles.adventure-works.com/
InternalUrl                              : https://awcyclesapps.adventure-works.com:3000/
IsTranslateHostHeaderEnabled             : False
IsTranslateLinksInBodyEnabled            : False
IsOnPremPublishingEnabled                : True
VerifiedCustomDomainCertificatesMetadata : class OnPremisesPublishingVerifiedCustomDomainCertificatesMetadataObject {
                                             Thumbprint:  [XXXXX]
                                             SubjectName: [XXXXX]
                                             Issuer: 
                                             IssueDate: 11/9/2017 5:54:29
                                             ExpiryDate: 11/9/2019 5:54:29
                                           }
                                           
VerifiedCustomDomainKeyCredential        : 
VerifiedCustomDomainPasswordCredential   : 
SingleSignOnSettings                     :

Beispiel 2

Verwenden Sie das folgende Skript, um die Liste der in Ihrem Mandanten registrierten Azure AD-Anwendungsproxy-Anwendungen abzurufen:

foreach ($a in (Get-AzureADApplication -All:$true))
{
    try
    {
        $p = Get-AzureADApplicationProxyApplication -ObjectId $a.ObjectId
        [pscustomobject]@{ObjectID=$a.ObjectId; DisplayName=$a.DisplayName; ExternalUrl=$p.ExternalUrl; InternalUrl=$p.InternalUrl}
    }
    catch
    {
        continue
    }
}

Parameter

-ObjectId

Dies ist die eindeutige Anwendungs-ID der Anwendung. Dies kann mithilfe des Befehls Get-AzureADApplication gefunden werden. Sie können dies auch im Azure-Portal finden, indem Sie zu AAD, Enterprise Applications, All Applications, Select your application, go to the properties tab, and use the ObjectId on this page.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

Eingaben

String

Ausgaben

Object