Skip to content

Commit 7a48547

Browse files
authored
Update Get-TlsCipherSuite.md
Applied changes in MicrosoftDocs#2485 for the 2016 doc content
1 parent d10caba commit 7a48547

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docset/winserver2016-ps/tls/Get-TlsCipherSuite.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title: Get-TlsCipherSuite
1111
# Get-TlsCipherSuite
1212

1313
## SYNOPSIS
14-
Gets the list of cipher suites for TLS for a computer.
14+
Gets the TLS cipher suites for a computer.
1515

1616
## SYNTAX
1717

@@ -20,7 +20,7 @@ Get-TlsCipherSuite [[-Name] <String>] [<CommonParameters>]
2020
```
2121

2222
## DESCRIPTION
23-
The **Get-TlsCipherSuite** cmdlet gets the ordered list of cipher suites for a computer that Transport Layer Security (TLS) can use.
23+
The **Get-TlsCipherSuite** cmdlet gets an ordered collection of cipher suites for a computer that Transport Layer Security (TLS) can use.
2424

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

@@ -99,7 +99,8 @@ Name : TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
9999
Protocols : {771, 65277}
100100
```
101101

102-
This command gets all the cipher suites that have names that contain the string AES.
102+
This command gets all the cipher suites that have names that contain the string `AES`.
103+
Note that the name match is case sensitive and this command returns no output for the name `aes`.
103104
The output includes a field for the TLS/SSL protocols supported by the cipher. See [Cipher Suites in TLS/SSL (Schannel SSP)](https://docs.microsoft.com/windows/desktop/secauthn/cipher-suites-in-schannel) for more information.
104105

105106

@@ -108,6 +109,7 @@ The output includes a field for the TLS/SSL protocols supported by the cipher. S
108109
### -Name
109110
Specifies the name of the TLS cipher suite to get.
110111
The cmdlet gets cipher suites that match the string that this cmdlet specifies, so you can specify a partial name.
112+
Note that the name match is case sensitive and this command returns no output for the name `aes`.
111113

112114
```yaml
113115
Type: String

0 commit comments

Comments
 (0)