Skip to content

Commit

Permalink
Merge pull request #2100 from microsoft/lusassl-EP13062024-TlsDisplay…
Browse files Browse the repository at this point in the history
…Issue

ExchangeExtendedProtectionManagement.ps1 shows SystemTlsVersions instead of SystemDefaultTlsVersions
  • Loading branch information
dpaulson45 authored Jun 13, 2024
2 parents 4db3cce + 2cfea22 commit 5a60c90
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -481,9 +481,9 @@ begin {

$tlsSettings.TlsSettings.Registry.Net.Values |
ForEach-Object {
$displayObject += NewDisplayObject "SystemTlsVersions" -Location $_.MicrosoftRegistryLocation -Value $_.SystemDefaultTlsVersionsValue
$displayObject += NewDisplayObject "SystemDefaultTlsVersions" -Location $_.MicrosoftRegistryLocation -Value $_.SystemDefaultTlsVersionsValue
$displayObject += NewDisplayObject "SchUseStrongCrypto" -Location $_.MicrosoftRegistryLocation -Value $_.SchUseStrongCryptoValue
$displayObject += NewDisplayObject "SystemTlsVersions" -Location $_.WowRegistryLocation -Value $_.WowSystemDefaultTlsVersionsValue
$displayObject += NewDisplayObject "SystemDefaultTlsVersions" -Location $_.WowRegistryLocation -Value $_.WowSystemDefaultTlsVersionsValue
$displayObject += NewDisplayObject "SchUseStrongCrypto" -Location $_.WowRegistryLocation -Value $_.WowSchUseStrongCryptoValue
}
$stringOutput = [string]::Empty
Expand Down

0 comments on commit 5a60c90

Please sign in to comment.