Get-WebApplicationProxyApplication

Get-WebApplicationProxyApplication

Gets published web applications.

Syntax

Parameter Set: ID
Get-WebApplicationProxyApplication -ID <Guid> [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Parameter Set: Name
Get-WebApplicationProxyApplication [[-Name] <String> ] [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Detaillierte Beschreibung

The Get-WebApplicationProxyApplication cmdlet gets objects that represent published web applications. You can specify the ID of an application, or specify the name of an application, including a name that includes the wildcard characters * or ?. If you do not specify name or ID, the cmdlet gets all the published applications. If more than one application is found, then the cmdlet outputs a list of the applications. If only one application is found, then the cmdlet displays properties of the application.

Parameter

-AsJob

Aliasse

Keiner

Erforderlich?

false

Position?

named

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-CimSession<CimSession[]>

Führt das Cmdlet in einer Remotesitzung oder auf einem Remotecomputer aus. Geben Sie einen Computernamen oder ein Sitzungsobjekt ein, z. B. die Ausgabe eines Cmdlets New-CimSession oder Get-CimSession. Der Standardwert ist die aktuelle Sitzung auf dem lokalen Computer.

Aliasse

Session

Erforderlich?

false

Position?

named

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

-ID<Guid>

Specifies the GUID of a web application.

Aliasse

Keiner

Erforderlich?

true

Position?

named

Standardwert

Keiner

Pipelineeingaben akzeptieren?

True (ByPropertyName)

Platzhalterzeichen akzeptieren?

false

-Name<String>

Specifies a friendly name for the published web application. You can use wildcard characters.

Aliasse

FriendlyName

Erforderlich?

false

Position?

1

Standardwert

Keiner

Pipelineeingaben akzeptieren?

True (ByPropertyName)

Platzhalterzeichen akzeptieren?

false

-ThrottleLimit<Int32>

Gibt die maximale Anzahl von gleichzeitigen Vorgängen an, die zum Ausführen dieses Cmdlets eingerichtet werden können. Wenn dieser Parameter ausgelassen oder der Wert 0 eingegeben wird, berechnet Windows PowerShell® einen optimalen Drosselungsgrenzwert für das Cmdlet basierend auf der Anzahl der CIM-Cmdlets, die auf dem Computer ausgeführt werden. Die Drosselungsgrenze gilt nur für das aktuelle Cmdlet und nicht für die Sitzung oder den Computer.

Aliasse

Keiner

Erforderlich?

false

Position?

named

Standardwert

Keiner

Pipelineeingaben akzeptieren?

false

Platzhalterzeichen akzeptieren?

false

<CommonParameters>

Dieses Cmdlet unterstützt die allgemeinen Parameter: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable. Weitere Informationen finden Sie unter about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Eingaben

Der Eingabetyp ist der Typ der Objekte, die über die Pipeline an das Cmdlet übergeben werden können.

Ausgaben

Der Ausgabetyp ist der Typ der Objekte, die vom Cmdlet ausgegeben werden.

  • Microsoft.Management.Infrastructure.CimInstance#PublishedWebApp[]

    If the cmdlet finds more than one application, it displays a list of the applications. If the cmdlet gets a single application, it displays the properties of the application.

Beispiele

Example 1: Get all published applications

This command all of the published applications, and displays information about them.

PS C:\> Get-WebApplicationProxyApplication

Example 2: Get an application by using an ID

This command gets the application that has the specified ID.

PS C:\> Get-WebApplicationProxyApplication -ID 616b2e81-bada-4abc-996a-b0c806eb6f45

Example 3: Get an application by using a name

This command gets the application named ContosoApp.

PS C:\> Get-WebApplicationProxyApplication -Name "ContosoApp"

Example 4: Get applications that have names that end in a specified string

This command gets applications that have names that end with the string Contoso.

PS C:\> Get-WebApplicationProxyApplication -Name "*Contoso"

Show the full details of a published application

This command shows the full details of applications that have names that end with the string Contoso.

PS C:\> Get-WebApplicationProxyApplication *Contoso | Format-List

Verwandte Themen

Add-WebApplicationProxyApplication

Remove-WebApplicationProxyApplication

Set-WebApplicationProxyApplication

Web Application Proxy Overview

Publishing Internal Applications using Web Application Proxy