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