Get-TlsCipherSuite is not working in windows server 2012 R2 powershell . how to get list of cipher

Bilal Khan 101 Reputation points
2021-09-16T23:32:32.313+00:00

Get-TlsCipherSuite is not working in windows server 2012 R2 powershell . how to get list of cipher is there a possible way to disable weak cipher in registry with example please

Windows Server 2012
Windows Server 2012
A Microsoft server operating system that supports enterprise-level management, data storage, applications, and communications.
1,532 questions
Windows Server PowerShell
Windows Server PowerShell
Windows Server: A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.PowerShell: A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
5,381 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. sok 11 Reputation points
    2021-09-17T10:39:30.667+00:00

    Hello,

    Cipher Suites are store in the following RegKey and through PS you can use:

    Get-ItemPropertyValue -Path HKLM:\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002 -Name Functions

    If you do any changes, DO TEST before !!!
    Otherwise you may lock your self out, if it's remote Box / VM.

    Get-TlsCipherSuite will work on Win10 / Server2016 or higher...

    2 people found this answer helpful.