Get-TlsCipherSuite

应用到: Windows 10

Get-TlsCipherSuite

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

语法

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

详细说明

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.

参数

-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.

别名

none

是否必需?

false

在哪里?

1

默认值

none

是否接受管道输入?

true (ByValue, ByPropertyName)

是否接受通配符?

false

<CommonParameters>

此 cmdlet 支持常见的参数:-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer 和 -OutVariable。有关详细信息,请参阅 TechNet 上的 about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216)。

输入

输入类型是可以传送到 cmdlet 的对象的类型。

输出

输出类型是 cmdlet 发出的对象的类型。

示例

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"

相关主题

Disable-TlsCipherSuite

Enable-TlsCipherSuite