From de290b4fd884e565f44d75934602809d1e7fd81c Mon Sep 17 00:00:00 2001 From: David Paulson Date: Wed, 7 Feb 2024 14:47:23 -0600 Subject: [PATCH] Remove IIS BE Binding Check --- .../Analyzer/Invoke-AnalyzerIISInformation.ps1 | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerIISInformation.ps1 b/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerIISInformation.ps1 index 8dd338e0a3..92c9947bca 100644 --- a/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerIISInformation.ps1 +++ b/Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerIISInformation.ps1 @@ -105,13 +105,6 @@ function Invoke-AnalyzerIISInformation { $problemCertList.Add("'$certHash' Doesn't exist on the server and this will cause problems.") } elseif ($cert.LifetimeInDays -lt 0) { $problemCertList.Add("'$certHash' Has expired and will cause problems.") - } elseif ($_.bindingInformation -eq "*:444:") { - $namespaces = $cert.Namespaces | ForEach-Object { $_.ToString() } - - if ($namespaces -notcontains $exchangeInformation.GetExchangeServer.Fqdn -or - $namespaces -notcontains $exchangeInformation.GetExchangeServer.Name) { - $problemCertList.Add("'$certHash' Exchange Back End does not have hostname or FQDN for the namespaces. This can cause connectivity issues.") - } } }