Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
vendors:microsoft:os [2020/08/14 14:15] – [Create a File of a specific size] gerardorourkevendors:microsoft:os [2020/09/11 13:12] (current) – [Windows 2012 - Enabling TLS 1.2] gerardorourke
Line 29: Line 29:
 </code> </code>
 {{:vendors:microsoft:fsutil.png?400|}} {{:vendors:microsoft:fsutil.png?400|}}
 +
 +====== Windows 2016 ======
 +
 +Skipping Compatibility Check
 +  *https://www.dxsdata.com/2016/11/windows-server-2016-standard-skipping-compatibility-check/
 +
 +===== Windows 2012 - Enabling TLS 1.2 =====
 +
 +Import the below Registry
 +<file reg TLS.reg>
 +Windows Registry Editor Version 5.00
 +
 +[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols]
 +
 +[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]
 +"DisabledByDefault"=dword:00000001
 +"Enabled"=dword:00000000
 +
 +[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
 +
 +</file>
  • vendors/microsoft/os.1597410922.txt.gz
  • Last modified: 2020/08/14 14:15
  • by gerardorourke