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.

Aliases

none

必須/オプション

false

位置

1

既定値

none

パイプライン入力の受け入れ

true (ByValue, ByPropertyName)

ワイルドカード文字の受け入れ

false

<CommonParameters>

このコマンドレットは共通のパラメーターをサポートしています(-Verbose、-Debug、-ErrorAction、-ErrorVariable、-OutBuffer、および -OutVariable)。詳細については、TechNet の「 「about_CommonParameters」 (https://go.microsoft.com/fwlink/p/?LinkID=113216) を参照してください。

入力

入力型は、コマンドレットにパイプできるオブジェクトの型です。

出力

出力型は、コマンドレットが出力するオブジェクトの型です。

使用例

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