Last active
February 4, 2025 15:29
-
-
Save FH-Inway/193a2819c2682e203496ae7d44baecdb to your computer and use it in GitHub Desktop.
Enable Cipher Suites for D365FO Cloud Hosted Environments
This file contains 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
# Original Script by @batetech shared with permission. | |
# This script makes the changes described in https://learn.microsoft.com/en-us/troubleshoot/windows-client/installing-updates-features-roles/troubleshoot-windows-update-error-0x80072efe-with-cipher-suite-configuration | |
# This will also fix issues where PowerShell modules can no longer be installed. | |
# See also https://github.com/d365collaborative/d365fo.tools/issues/874 | |
# gist at https://gist.github.com/FH-Inway/193a2819c2682e203496ae7d44baecdb | |
# Requires -RunAsAdministrator | |
$ErrorActionPreference = 'Stop'; | |
$regPath = 'HKLM:\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\00010002'; | |
$ciphers = Get-ItemPropertyValue "$regPath" -Name 'Functions'; | |
Write-host "Values before: $ciphers"; | |
$cipherList = $ciphers.Split(','); | |
$updateReg = $false; | |
if ($cipherList -inotcontains 'TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384') { | |
Write-Host "Adding TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384"; | |
$ciphers += ',TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384'; | |
$updateReg = $true; | |
} | |
if ($cipherList -inotcontains 'TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA256') { | |
Write-Host "Adding TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA256"; | |
$ciphers += ',TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA256'; | |
$updateReg = $true; | |
} | |
if ($updateReg) { | |
Set-ItemProperty "$regPath" -Name 'Functions' -Value "$ciphers"; | |
$ciphers = Get-ItemPropertyValue "$regPath" -Name 'Functions'; | |
write-host "Values after: $ciphers"; | |
} | |
else { | |
Write-Host 'No updates needed, the required ciphers already exist.'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment