How to Check TLS\SSL

D-NESH 11 Reputation points
2020-10-06T15:16:49.693+00:00

Hi Team,

i would like to know how can check all the SSL\TLS status from command or powershell in window server.

or just can check from regedit ?

-D-

Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
12,121 questions
{count} vote

3 answers

Sort by: Most helpful
  1. VipulSparsh-MSFT 16,231 Reputation points Microsoft Employee
    2020-10-08T08:21:53.677+00:00

    @D-NESH I use powershell command Get-TlsCipherSuite on a windows server to list all cipher suites.

    30825-tls.png

    -----------------------------------------------------------------------------------------------------------------

    If the suggested response helped you resolve your issue, please do not forget to accept the response as Answer and "Up-Vote" for the answer that helped you for benefit of the community.

    5 people found this answer helpful.
    0 comments No comments

  2. Mridul Singh 10 Reputation points
    2021-09-21T07:56:43.287+00:00

    You can use below command to get better results.

    Get-TLSCipherSuite | ft name,certificate,cipherlenght

    2 people found this answer helpful.

  3. Leon Laude 85,651 Reputation points
    2020-10-06T15:25:33.74+00:00

    Hi @D-NESH ,

    You could create a PowerShell script that checks the TLS & SSL registry entries mentioned in the following documentation:
    https://learn.microsoft.com/en-us/windows-server/security/tls/tls-registry-settings

    You'll also find the default TLS & SSL settings on different Windows operating systems over here:
    https://learn.microsoft.com/en-us/windows/win32/secauthn/protocols-in-tls-ssl--schannel-ssp-

    Another easy way to check these settings is by using the free tool from Nartac:
    https://www.nartac.com/Products/IISCrypto/

    ----------

    (If the reply was helpful please don't forget to upvote or accept as answer, thank you)

    Best regards,
    Leon

    1 person found this answer helpful.
    0 comments No comments