Skip to content

Instantly share code, notes, and snippets.

@Ortham
Created February 23, 2018 14:45
Show Gist options
  • Save Ortham/7fd0a9fc1ca073a230355f0e6e39f39b to your computer and use it in GitHub Desktop.
Save Ortham/7fd0a9fc1ca073a230355f0e6e39f39b to your computer and use it in GitHub Desktop.
Enable TLS 1.2 support on Windows 7
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client]
"DisableByDefault"=dword:00000000
"Enabled"=dword:00000001
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client]
"DisableByDefault"=dword:00000000
"Enabled"=dword:00000001
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DefaultSecureProtocols"=dword:00000a00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Internet Settings\WinHttp]
"DefaultSecureProtocols"=dword:00000a00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment