Skip to content

Instantly share code, notes, and snippets.

@DylanLacey
Last active September 1, 2023 10:50
Show Gist options
  • Save DylanLacey/011124077d0a8c41e31a to your computer and use it in GitHub Desktop.
Save DylanLacey/011124077d0a8c41e31a to your computer and use it in GitHub Desktop.
Enable TLS 1.1 and 1.2 in Windows
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client" /v DisabledByDefault /t REG_DWORD /d 00000000 /f
reg query "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client" /v DisabledByDefault
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server" /v DisabledByDefault /t REG_DWORD /d 00000000 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client" /v DisabledByDefault /t REG_DWORD /d 00000000 /f
reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server" /v DisabledByDefault /t REG_DWORD /d 00000000 /f
@billson-my
Copy link

Hi, able to confirm:

  1. if windows reboot is required to take effect?
  2. applicable for tls1?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment