Freigeben über


Get-WebApplicationProxyAvailableADFSRelyingParty

Get-WebApplicationProxyAvailableADFSRelyingParty

Retrieves a list of available relying parties configured on a federation server.

Syntax

Parameter Set: Get0
Get-WebApplicationProxyAvailableADFSRelyingParty [-AsJob] [-CimSession <CimSession[]> ] [-ThrottleLimit <Int32> ] [ <CommonParameters>]

Detaillierte Beschreibung

The Get-WebApplicationProxyAvailableADFSRelyingParty cmdlet retrieves a list of all the relying parties configured on a federation server. A relying party is a Federation Service or application that consumes claims or Windows Integrated authentication.

Webanwendungsproxy can publish all of the AD FS relying parties that this command retrieves.

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

-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#RelyingPartyMetadata[]

Beispiele

Example 1: Retrieve a list of all relying parties

This command retrieves all relying parties on this server.

PS C:\> Get-WebApplicationProxyAvailableADFSRelyingParty

Example 2: Retrieve a list of all published relying parties

This command retrieves published relying parties on this server.

PS C:\> Get-WebApplicationProxyAvailableADFSRelyingParty | Where-Object {$_.Published -eq $True}

Example 3: Retrieve a list of all relying parties and format the list

This command retrieves the relying parties on this server, and then displays the output in table format.

PS C:\> Get-WebApplicationProxyAvailableADFSRelyingParty | Format-Table -AutoSize