Get-AzureADApplicationProxyApplication

Cmdlet Get-AzureADApplicationProxyApplication mengambil aplikasi yang dikonfigurasi untuk Proksi Aplikasi di Azure Active Directory.

Sintaks

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

Deskripsi

Cmdlet Get-AzureADApplicationProxyApplication mengambil aplikasi yang dikonfigurasi untuk Proksi Aplikasi di Azure Active Directory.

Contoh

Contoh 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                     :

Contoh 2

Gunakan skrip berikut untuk mendapatkan daftar aplikasi Azure AD Proksi Aplikasi yang terdaftar di penyewa Anda:

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

Ini adalah ID aplikasi unik dari aplikasi. Ini dapat ditemukan menggunakan perintah Get-AzureADApplication. Anda juga dapat menemukan ini di Portal Microsoft Azure dengan menavigasi ke AAD, Aplikasi Perusahaan, Semua Aplikasi, Pilih aplikasi Anda, buka tab properti, dan gunakan ObjectId di halaman tersebut.

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

Input

String

Output

Object