Skip to content

Instantly share code, notes, and snippets.

@rfl890
Last active August 7, 2025 19:48
Show Gist options
  • Save rfl890/a28b76c9687e756fb8f10bc7853cb9e0 to your computer and use it in GitHub Desktop.
Save rfl890/a28b76c9687e756fb8f10bc7853cb9e0 to your computer and use it in GitHub Desktop.
Reg file to enable modern TLS versions on Windows XP
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client]
"DisabledByDefault"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server]
"DisabledByDefault"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"DisabledByDefault"=dword:00000000
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server]
"DisabledByDefault"=dword:00000000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment