Share via


Get-TlsCipherSuite

S'applique à: Windows 10

Get-TlsCipherSuite

Gets the list of cipher suites for TLS for a computer.

Syntaxe

Parameter Set: Default
Get-TlsCipherSuite [[-Name] <String> ] [ <CommonParameters>]

Description détaillée

The Get-TlsCipherSuite cmdlet gets the ordered list of cipher suites for a computer that Transport Layer Security (TLS) can use.

For more information about the TLS cipher suites, see the documentation for the Enable-TlsCipherSuite cmdlet or type Get-Help Enable-TlsCipherSuite.

Paramètres

-Name<String>

Specifies the name of the TLS cipher suite to get. The cmdlet gets cipher suites that match the string that this cmdlet specifies, so you can specify a partial name.

Alias

none

Requis ?

false

Position ?

1

Valeur par défaut

none

Accepter l'entrée de pipeline ?

true (ByValue, ByPropertyName)

Accepter les caractères génériques ?

false

<CommonParameters>

Cette applet de commande prend en charge les paramètres courants : -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer et -OutVariable. Pour plus d'informations, consultez  . about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entrées

Le type d'entrée correspond au type des objets que vous pouvez adresser à l'applet de commande.

Sorties

Le type de sortie correspond au type des objets que l'applet de commande émet.

Exemples

Example 1: Get all cipher suites

This command gets all TLS cipher suites for the computer.

PS C:\> Get-TlsCipherSuite

Example 2: Get the cipher suites that match a string

This command gets all the cipher suites that have names that contain the string SSL.

PS C:\> Get-TlsCipherSuite -Name "SSL"

Rubriques connexes

Disable-TlsCipherSuite

Enable-TlsCipherSuite