Skip to content

Commit ce69276

Browse files
dpaulson45Copilot
andcommitted
Add June 2026 SU build numbers to Get-ExchangeBuildVersionInformation
Add Jun26SU build entries for: - Exchange 2016 CU23: 15.1.2507.69 - Exchange 2019 CU14: 15.2.1544.41 - Exchange 2019 CU15: 15.2.1748.46 - Exchange SE RTM: 15.2.2562.43 Update latestSUBuild markers to Jun26SU for all supported versions. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 4f5d977 commit ce69276

1 file changed

Lines changed: 8 additions & 5 deletions

File tree

Shared/Get-ExchangeBuildVersionInformation.ps1

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,8 +131,7 @@ function Get-ExchangeBuildVersionInformation {
131131
$cuReleaseDate = "07/01/2025"
132132
$supportedBuildNumber = $true
133133
}
134-
(GetBuildVersion $exSE "RTM" -SU "May26HU") { $latestSUBuild = $true }
135-
(GetBuildVersion $exSE "RTM" -SU "Feb26SU") { $latestSUBuild = $true }
134+
(GetBuildVersion $exSE "RTM" -SU "Jun26SU") { $latestSUBuild = $true }
136135
}
137136
} elseif ($exchangeVersion.Major -eq 15 -and $exchangeVersion.Minor -eq 2) {
138137
Write-Verbose "Exchange 2019 is detected"
@@ -151,14 +150,14 @@ function Get-ExchangeBuildVersionInformation {
151150
$cuReleaseDate = "02/10/2025"
152151
$supportedBuildNumber = $true
153152
}
154-
(GetBuildVersion $ex19 "CU15" -SU "Feb26SU") { $latestSUBuild = $true }
153+
(GetBuildVersion $ex19 "CU15" -SU "Jun26SU") { $latestSUBuild = $true }
155154
{ $_ -lt (GetBuildVersion $ex19 "CU15") } {
156155
$cuLevel = "CU14"
157156
$cuReleaseDate = "02/13/2024"
158157
$supportedBuildNumber = $true
159158
$orgValue = 16762
160159
}
161-
(GetBuildVersion $ex19 "CU14" -SU "Feb26SU") { $latestSUBuild = $true }
160+
(GetBuildVersion $ex19 "CU14" -SU "Jun26SU") { $latestSUBuild = $true }
162161
{ $_ -lt (GetBuildVersion $ex19 "CU14") } {
163162
$cuLevel = "CU13"
164163
$cuReleaseDate = "05/03/2023"
@@ -255,7 +254,7 @@ function Get-ExchangeBuildVersionInformation {
255254
$cuReleaseDate = "04/20/2022"
256255
$supportedBuildNumber = $true
257256
}
258-
(GetBuildVersion $ex16 "CU23" -SU "Feb26SU") { $latestSUBuild = $true }
257+
(GetBuildVersion $ex16 "CU23" -SU "Jun26SU") { $latestSUBuild = $true }
259258
{ $_ -lt (GetBuildVersion $ex16 "CU23") } {
260259
$cuLevel = "CU22"
261260
$cuReleaseDate = "09/28/2021"
@@ -750,6 +749,7 @@ function GetExchangeBuildDictionary {
750749
"Oct25SU" = "15.1.2507.61"
751750
"Dec25SU" = "15.1.2507.63"
752751
"Feb26SU" = "15.1.2507.66"
752+
"Jun26SU" = "15.1.2507.69"
753753
})
754754
}
755755
"Exchange2019" = @{
@@ -864,6 +864,7 @@ function GetExchangeBuildDictionary {
864864
"Oct25SU" = "15.2.1544.36"
865865
"Dec25SU" = "15.2.1544.37"
866866
"Feb26SU" = "15.2.1544.39"
867+
"Jun26SU" = "15.2.1544.41"
867868
})
868869
"CU15" = (NewCUAndSUObject "15.2.1748.10" @{
869870
"Apr25HU" = "15.2.1748.24"
@@ -873,6 +874,7 @@ function GetExchangeBuildDictionary {
873874
"Oct25SU" = "15.2.1748.39"
874875
"Dec25SU" = "15.2.1748.42"
875876
"Feb26SU" = "15.2.1748.43"
877+
"Jun26SU" = "15.2.1748.46"
876878
})
877879
}
878880
"ExchangeSE" = @{
@@ -883,6 +885,7 @@ function GetExchangeBuildDictionary {
883885
"Dec25SU" = "15.2.2562.35"
884886
"Feb26SU" = "15.2.2562.37"
885887
"May26HU" = "15.2.2562.41"
888+
"Jun26SU" = "15.2.2562.43"
886889
})
887890
}
888891
}

0 commit comments

Comments
 (0)