<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Add legacy SSL ciphers back to Windows 11 24H2 - Microsoft Windows				            </title>
            <link>https://www.virtualizationhowto.com/community/microsoft-windows/add-legacy-ssl-ciphers-back-to-windows-11-24h2/</link>
            <description>Virtualization Howto Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 09 Jun 2026 12:05:46 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Add legacy SSL ciphers back to Windows 11 24H2</title>
                        <link>https://www.virtualizationhowto.com/community/microsoft-windows/add-legacy-ssl-ciphers-back-to-windows-11-24h2/#post-1278</link>
                        <pubDate>Thu, 17 Apr 2025 16:24:57 +0000</pubDate>
                        <description><![CDATA[One issue I have found in troubleshooting a connection to a legacy SQL Server is that Windows 11 24H2 seems to have deprecated legacy ciphers even further than previous versions of Windows 1...]]></description>
                        <content:encoded><![CDATA[<p>One issue I have found in troubleshooting a connection to a legacy SQL Server is that Windows 11 24H2 seems to have deprecated legacy ciphers even further than previous versions of Windows 11. Now, the ciphers are not even there. Previously I could launch IIS Crypto and enable all the legacy ciphers, but this didn't work in 24H2. So, I set about looking to see what had changed. </p>
<p>Apparently, Windows 11 24H2 removes the following ciphers:</p>
<ul>
<li class="" data-start="181" data-end="217">
<p class="" data-start="183" data-end="217"><code data-start="186" data-end="217">TLS_RSA_WITH_3DES_EDE_CBC_SHA</code></p>
</li>
<li class="" data-start="218" data-end="249">
<p class="" data-start="220" data-end="249"><code data-start="223" data-end="249">TLS_RSA_WITH_RC4_128_SHA</code></p>
</li>
<li class="" data-start="250" data-end="281">
<p class="" data-start="252" data-end="281">T<code data-start="255" data-end="281">LS_RSA_WITH_RC4_128_MD5</code></p>
</li>
</ul>
<p>So, these have to be added back and enabled.</p>
<p>PowerShell code to add these ciphers back and enable them</p>
<p>You can use the following PowerShell code to add these ciphers back and enable them. After running, the script calls out that you need to reboot also for these changes to take effect.</p>
<pre contenteditable="false">$regPath = "HKLM:\SYSTEM\CurrentControlSet\Control\Cryptography\Configuration\Local\SSL\00010002"
$currentCiphers = (Get-ItemProperty -Path $regPath).Functions

# Legacy cipher suites for SQL 2005
$legacySuites = @(
    "TLS_RSA_WITH_3DES_EDE_CBC_SHA",
    "TLS_RSA_WITH_RC4_128_SHA",
    "TLS_RSA_WITH_RC4_128_MD5"
)

# Add missing cipher suites to the SSL Functions list
$missing = $legacySuites | Where-Object { $_ -notin $currentCiphers }
if ($missing.Count -gt 0) {
    Write-Output "Adding missing cipher suites: $($missing -join ', ')"
    $newList = $currentCiphers + $missing
    Set-ItemProperty -Path $regPath -Name "Functions" -Value $newList
} else {
    Write-Output "All required cipher suites already present."
}

# Enable legacy cipher algorithms in SCHANNEL
$cipherPaths = @(
    "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 128/128",
    "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 64/128",
    "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 56/128",
    "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\RC4 40/128",
    "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\Triple DES 168"
)

foreach ($path in $cipherPaths) {
    if (-not (Test-Path $path)) {
        New-Item -Path $path -Force | Out-Null
    }
    Set-ItemProperty -Path $path -Name "Enabled" -Value 1 -Type DWord
}

Write-Output "Legacy ciphers are now enabled. Please reboot to apply changes."
</pre>]]></content:encoded>
						                            <category domain="https://www.virtualizationhowto.com/community/microsoft-windows/">Microsoft Windows</category>                        <dc:creator>Brandon Lee</dc:creator>
                        <guid isPermaLink="true">https://www.virtualizationhowto.com/community/microsoft-windows/add-legacy-ssl-ciphers-back-to-windows-11-24h2/#post-1278</guid>
                    </item>
							        </channel>
        </rss>
		