Answered by:
How to enable SSL V3 on Windows 2008?

Question
-
Hello all!
I need to enable, only SSL V3 on my Windows 2008. I've seen a lot of articales about how to do it and found, that the way is to create value Enabled and to set 1 in following registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL.3\Server.
In my case in regestry i have, only:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Client
What i have to do?
Thanks!
- Moved by Rick Tan Thursday, May 19, 2011 1:19 AM (From:General)
Wednesday, May 18, 2011 8:36 PM
Answers
-
If SSL 3.0 key does not exist, you can manually create it and enable SSL 3.0 according to the following steps:
1. Click Start, click Run, type regedt32 or type regedit, and then click OK.
2. In Registry Editor, locate the following registry key:
HKey_Local_Machine\System\CurrentControlSet\Control\SecurityProviders \SCHANNEL\Protocols
3. Right-click Protocols, click New, click Key and name it as SSL 3.0.
4. Right-click SSL 3.0, click New, click Key and name it as Server.
5. Right-click Server, click New, click DWORD (32bit) Value and name it as Enabled.
6. Double-click Enabled and make sure its value is 1.
Backup your system state before proceeding.
This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.Microsoft Student Partner
Microsoft Certified Professional
Microsoft Certified Systems Administrator: Security
Microsoft Certified Systems Engineer: Security
Microsoft Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
Microsoft Certified Technology Specialist: Windows Server 2008 Network Infrastructure, ConfigurationMicrosoft Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
- Marked as answer by Rick Tan Thursday, May 26, 2011 1:46 AM
Wednesday, May 18, 2011 9:53 PM -
Also you may check the following article: http://blogs.technet.com/b/askds/archive/2011/05/04/speaking-in-ciphers-and-other-enigmatic-tongues.aspx
My weblog: http://en-us.sysadmins.lv
PowerShell PKI Module: http://pspki.codeplex.com- Marked as answer by Rick Tan Thursday, May 26, 2011 1:46 AM
Thursday, May 19, 2011 5:27 AM
All replies
-
If SSL 3.0 key does not exist, you can manually create it and enable SSL 3.0 according to the following steps:
1. Click Start, click Run, type regedt32 or type regedit, and then click OK.
2. In Registry Editor, locate the following registry key:
HKey_Local_Machine\System\CurrentControlSet\Control\SecurityProviders \SCHANNEL\Protocols
3. Right-click Protocols, click New, click Key and name it as SSL 3.0.
4. Right-click SSL 3.0, click New, click Key and name it as Server.
5. Right-click Server, click New, click DWORD (32bit) Value and name it as Enabled.
6. Double-click Enabled and make sure its value is 1.
Backup your system state before proceeding.
This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.Microsoft Student Partner
Microsoft Certified Professional
Microsoft Certified Systems Administrator: Security
Microsoft Certified Systems Engineer: Security
Microsoft Certified Technology Specialist: Windows Server 2008 Active Directory, Configuration
Microsoft Certified Technology Specialist: Windows Server 2008 Network Infrastructure, ConfigurationMicrosoft Certified Technology Specialist: Windows Server 2008 Applications Infrastructure, Configuration
- Marked as answer by Rick Tan Thursday, May 26, 2011 1:46 AM
Wednesday, May 18, 2011 9:53 PM -
On Wed, 18 May 2011 20:36:11 +0000, pavlenych wrote:
I need to enable, only SSL V3 on my Windows 2008. I've seen a lot of articales about how to do it and found, that the way is to create value Enabled and to set 1?in following registry key: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL.3\Server.
In my case in regestry i have, only:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\SSL 2.0\Client
What i have to do?You'll need to create the SSL3 key, the Server key, and then the Enabled
value.
Paul Adare
MVP - Identity Lifecycle Manager
http://www.identit.ca
Thrashing is just virtual crashing.Thursday, May 19, 2011 4:05 AM -
Also you may check the following article: http://blogs.technet.com/b/askds/archive/2011/05/04/speaking-in-ciphers-and-other-enigmatic-tongues.aspx
My weblog: http://en-us.sysadmins.lv
PowerShell PKI Module: http://pspki.codeplex.com- Marked as answer by Rick Tan Thursday, May 26, 2011 1:46 AM
Thursday, May 19, 2011 5:27 AM -
Thanks a lot!Saturday, May 21, 2011 6:26 PM