Skip to content

Commit 3fd8463

Browse files
authored
Merge pull request #2413 from microsoft/dpaul-Sep25HU
Add September 2025 Hotfix Update
2 parents 29ab4f5 + 0caa7f2 commit 3fd8463

2 files changed

Lines changed: 23 additions & 0 deletions

File tree

Diagnostics/HealthChecker/Analyzer/Invoke-AnalyzerKnownBuildIssues.ps1

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,21 @@ function Invoke-AnalyzerKnownBuildIssues {
274274
InformationUrl = (GetKnownIssueInformation @infoParams)
275275
}
276276
TestForKnownBuildIssues @params
277+
278+
Write-Verbose "Test for known move to archive issue with Hybrid App"
279+
$infoParams = @{
280+
Name = "Online archiving fails for on-premises users in hybrid environment"
281+
Url = "https://support.microsoft.com/en-us/topic/online-archiving-fails-for-on-premises-users-in-hybrid-environment-ab3b6a9f-18bf-493b-b47d-450ad7c89ed4"
282+
}
283+
$params = @{
284+
CurrentVersion = $currentVersion
285+
KnownBuildIssuesToFixes = @((GetKnownIssueBuildInformation "15.2.2562.17" "15.2.2562.27"),
286+
(GetKnownIssueBuildInformation "15.2.1748.24" "15.2.1748.37"),
287+
(GetKnownIssueBuildInformation "15.2.1544.25" "15.2.1544.34"),
288+
(GetKnownIssueBuildInformation "15.1.2507.55" "15.1.2507.59"))
289+
InformationUrl = (GetKnownIssueInformation @infoParams)
290+
}
291+
TestForKnownBuildIssues @params
277292
} catch {
278293
Write-Verbose "Failed to run TestForKnownBuildIssues"
279294
Invoke-CatchActions

Shared/Get-ExchangeBuildVersionInformation.ps1

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ function Get-ExchangeBuildVersionInformation {
127127
$cuReleaseDate = "07/01/2025"
128128
$supportedBuildNumber = $true
129129
}
130+
(GetBuildVersion $exSE "RTM" -SU "Sep25HU") { $latestSUBuild = $true }
130131
(GetBuildVersion $exSE "RTM" -SU "Aug25SU") { $latestSUBuild = $true }
131132
}
132133
} elseif ($exchangeVersion.Major -eq 15 -and $exchangeVersion.Minor -eq 2) {
@@ -146,13 +147,15 @@ function Get-ExchangeBuildVersionInformation {
146147
$cuReleaseDate = "02/10/2025"
147148
$supportedBuildNumber = $true
148149
}
150+
(GetBuildVersion $ex19 "CU15" -SU "Sep25HU") { $latestSUBuild = $true }
149151
(GetBuildVersion $ex19 "CU15" -SU "Aug25SU") { $latestSUBuild = $true }
150152
{ $_ -lt (GetBuildVersion $ex19 "CU15") } {
151153
$cuLevel = "CU14"
152154
$cuReleaseDate = "02/13/2024"
153155
$supportedBuildNumber = $true
154156
$orgValue = 16762
155157
}
158+
(GetBuildVersion $ex19 "CU14" -SU "Sep25HU") { $latestSUBuild = $true }
156159
(GetBuildVersion $ex19 "CU14" -SU "Aug25SU") { $latestSUBuild = $true }
157160
{ $_ -lt (GetBuildVersion $ex19 "CU14") } {
158161
$cuLevel = "CU13"
@@ -250,6 +253,7 @@ function Get-ExchangeBuildVersionInformation {
250253
$cuReleaseDate = "04/20/2022"
251254
$supportedBuildNumber = $true
252255
}
256+
(GetBuildVersion $ex16 "CU23" -SU "Sep25HU") { $latestSUBuild = $true }
253257
(GetBuildVersion $ex16 "CU23" -SU "Aug25SU") { $latestSUBuild = $true }
254258
{ $_ -lt (GetBuildVersion $ex16 "CU23") } {
255259
$cuLevel = "CU22"
@@ -741,6 +745,7 @@ function GetExchangeBuildDictionary {
741745
"Apr25HU" = "15.1.2507.55"
742746
"May25HU" = "15.1.2507.57"
743747
"Aug25SU" = "15.1.2507.58"
748+
"Sep25HU" = "15.1.2507.59"
744749
})
745750
}
746751
"Exchange2019" = @{
@@ -851,16 +856,19 @@ function GetExchangeBuildDictionary {
851856
"Apr25HU" = "15.2.1544.25"
852857
"May25HU" = "15.2.1544.27"
853858
"Aug25SU" = "15.2.1544.33"
859+
"Sep25HU" = "15.2.1544.34"
854860
})
855861
"CU15" = (NewCUAndSUObject "15.2.1748.10" @{
856862
"Apr25HU" = "15.2.1748.24"
857863
"May25HU" = "15.2.1748.26"
858864
"Aug25SU" = "15.2.1748.36"
865+
"Sep25HU" = "15.2.1748.37"
859866
})
860867
}
861868
"ExchangeSE" = @{
862869
"RTM" = (NewCUAndSUObject "15.2.2562.17" @{
863870
"Aug25SU" = "15.2.2562.20"
871+
"Sep25HU" = "15.2.2562.27"
864872
})
865873
}
866874
}

0 commit comments

Comments
 (0)