Last active
February 18, 2023 18:21
-
-
Save JeremyTBradshaw/abcc7cb24c6c2c2bc693a3703303e66e to your computer and use it in GitHub Desktop.
Quickly enable TLS1.2 and disable PCT1.0, SSL2.0, SSL3.0, TLS1.0, and TLS1.1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
;#======#---------------# | |
;#region# .NETFramework # | |
;#======#---------------# | |
[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 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v2.0.50727] | |
"SchUseStrongCrypto"=dword:00000001 | |
"SystemDefaultTlsVersions"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\.NETFramework\v4.0.30319] | |
"SystemDefaultTlsVersions"=dword:00000001 | |
"SchUseStrongCrypto"=dword:00000001 | |
;#=========#---------------# | |
;#endregion# .NETFramework # | |
;#=========#---------------# | |
;#======#----------# | |
;#region# SCHANNEL # | |
;#======#----------# | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\PCT 1.0] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\PCT 1.0\Client] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\PCT 1.0\Server] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Client] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Server] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Client] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 3.0\Server] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Client] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.0\Server] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Client] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.1\Server] | |
"Enabled"=dword:00000000 | |
"DisabledByDefault"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2] | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Client] | |
"Enabled"=dword:00000001 | |
"DisabledByDefault"=dword:00000000 | |
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\TLS 1.2\Server] | |
"Enabled"=dword:00000001 | |
"DisabledByDefault"=dword:00000000 | |
;#=========#----------# | |
;#endregion# SCHANNEL # | |
;#=========#----------# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment