Skip to content

Commit 9a00bbf

Browse files
authored
Merge pull request #2226 from microsoft/dpaul-HcDev
Known issue for Nov24SU that was pulled
2 parents 37bd4ad + 338320a commit 9a00bbf

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerKnownBuildIssues.ps1

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -246,6 +246,20 @@ function Invoke-AnalyzerKnownBuildIssues {
246246
InformationUrl = (GetKnownIssueInformation @infoParams)
247247
}
248248
TestForKnownBuildIssues @params
249+
250+
Write-Verbose "Work on Nov 2024 Security Updates"
251+
$infoParams = @{
252+
Name = "Pulled Nov 2024 Security Update"
253+
Url = "https://techcommunity.microsoft.com/blog/exchange/released-november-2024-exchange-server-security-updates/4293125"
254+
}
255+
$params = @{
256+
CurrentVersion = $currentVersion
257+
KnownBuildIssuesToFixes = @((GetKnownIssueBuildInformation "15.2.1544.13" $null),
258+
(GetKnownIssueBuildInformation "15.2.1258.38" $null),
259+
(GetKnownIssueBuildInformation "15.1.2507.43" $null))
260+
InformationUrl = (GetKnownIssueInformation @infoParams)
261+
}
262+
TestForKnownBuildIssues @params
249263
} catch {
250264
Write-Verbose "Failed to run TestForKnownBuildIssues"
251265
Invoke-CatchActions

0 commit comments

Comments
 (0)