Skip to content

Instantly share code, notes, and snippets.

@atakane
Last active December 5, 2020 18:37
Show Gist options
  • Save atakane/2507c5ea2203a8d49335fdb95ee8d0ca to your computer and use it in GitHub Desktop.
Save atakane/2507c5ea2203a8d49335fdb95ee8d0ca to your computer and use it in GitHub Desktop.
Enables TLS 1.2 support for Windows IIS Servers & .NET apps
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3]
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Client]
"DisabledByDefault"=dword:00000000
"Enabled"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.3\Server]
"Enabled"=dword:00000001
"DisabledByDefault"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727]
"SystemDefaultTlsVersions" = dword:00000001
"SchUseStrongCrypto" = dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319]
"SystemDefaultTlsVersions" = dword:00000001
"SchUseStrongCrypto" = dword:00000001
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment