Sharepoint 2016 TLS 1.2 enabling

Aare Srinivas Patel 1 Reputation point
2021-10-13T12:12:04.007+00:00

Hi

Could you please any one help out to configure/Enable TLS 1.2 for SharePoint 2016 .
Network guy installed the TLS into the server, after this i not able access SharePoint site showing below error message
i.e

" Turn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to <https://siteurl> again. If this error persists, it is possible that this site uses an unsupported protocol or cipher suit such as RC4, which is not considered secure. Please contact site administrator. "

I have done with advance settings from browser side but not resolved .

Can please advice what is the process to do fix this issue ?

Regards
Srinivas Are

SharePoint Server Development
SharePoint Server Development
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Development: The process of researching, productizing, and refining new or existing technologies.
1,567 questions
SharePoint Server Management
SharePoint Server Management
SharePoint Server: A family of Microsoft on-premises document management and storage systems.Management: The act or process of organizing, handling, directing or controlling something.
2,791 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Umr 521 Reputation points
    2021-10-13T13:55:10.537+00:00

    TLS 1.2 must be enabled your SP servers for TLS 1.2 to work. In addition to enabling TLS 1.2 make sure you have this key available as well on SP server.

    $registryPath = "HKLM:\SOFTWARE\Microsoft.NETFramework\v4.0.30319"
    $Name = "SchUseStrongCrypto"
    $value = "1"
    New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null

    $registryPath = "HKLM:\SOFTWARE\Wow6432Node\Microsoft.NETFramework\v4.0.30319"
    $Name = "SchUseStrongCrypto"
    $value = "1"
    New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null

    you can also use this utility to enable TLS 1.2 on server.
    https://www.nartac.com/Products/IISCrypto

    1 person found this answer helpful.

  2. CaseyYang-MSFT 10,321 Reputation points
    2021-10-14T03:06:21.993+00:00

    Hi @Aare Srinivas Patel ,

    Please go into IIS on your web server check the site Binding.

    Check whether you selected SSL certificate or not. You have to select proper wildcard certificate.

    140387-1.png

    For Reference: Quick Tip To Resolve “Turn on TLS” Error with SharePoint On-Premises
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


    If an Answer is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.