Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 3-12-24 #2038

Merged
merged 35 commits into from
Mar 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4d2d110
March 2024 SU Release Build Numbers
dpaulson45 Mar 7, 2024
c5e376a
Add CVE-2024-26198 to HC
dpaulson45 Mar 7, 2024
ead75b9
Add ADV24199947 to HC
dpaulson45 Mar 7, 2024
b6ea87c
Display no vulnerabilities on Edge Server
dpaulson45 Mar 8, 2024
2c90e5a
Add known issue
dpaulson45 Mar 12, 2024
c271fea
OIM Script Initial Creation
lusassl-msft Feb 1, 2024
04234d0
Common code to handle logging and update logic
dpaulson45 Feb 1, 2024
9059c0e
Inline start script logging and update
dpaulson45 Feb 1, 2024
e2771ca
Improvements made to script and documentation
lusassl-msft Feb 2, 2024
da096bb
Rename to ConfigureFipFsTextExtractionOverrides
lusassl-msft Feb 21, 2024
3f68a81
First draft of the script documentation
lusassl-msft Feb 29, 2024
b95eebb
XmlConfig Framework & StartStop Service
dpaulson45 Feb 7, 2024
22adf5e
Invoke-TextExtractionOverride logic added
dpaulson45 Feb 22, 2024
75a89eb
Add server processing list logic
dpaulson45 Feb 28, 2024
a2862f8
Remove Invoke-OutsideInModuleAction file
dpaulson45 Feb 29, 2024
ef5e884
Avoid repeat appends
dpaulson45 Feb 29, 2024
8b1d73c
Reverse the order for the restore process
dpaulson45 Mar 1, 2024
778c958
Add function for common code
dpaulson45 Mar 1, 2024
9e88d81
Add return object and display successful config changes
dpaulson45 Mar 1, 2024
ebece4f
Add Write-Progress to Text Extraction Override
dpaulson45 Mar 1, 2024
362dead
Final KB and Advisory link added
lusassl-msft Mar 6, 2024
c85ad53
Update Description comments and display disclaimer
lusassl-msft Mar 6, 2024
fe430ac
Skip servers that are not running Mar24SU
lusassl-msft Mar 6, 2024
ff38c7b
Documentation updated after review
lusassl-msft Mar 11, 2024
3af4df2
Improve Get-ProcessedServerList to handle Min SU requirement
dpaulson45 Mar 6, 2024
afe3488
Don't duplicate display out of date Exchange Servers
dpaulson45 Mar 6, 2024
0500be4
Moved Get-ExSetupDetails to shared
dpaulson45 Mar 6, 2024
103f368
Moved CompareExchangeBuildLevel to shared
dpaulson45 Mar 6, 2024
92270c9
Use starts-with vs contains
dpaulson45 Mar 10, 2024
5b95966
Improved null-value check in restore operation
lusassl-msft Mar 11, 2024
21d2838
After SelectNodes need to use Count -eq 0 to determine no result
dpaulson45 Mar 11, 2024
655373b
Block Pre March SU builds
dpaulson45 Mar 11, 2024
a4e483f
Allow Rollback to work on Pre March SU
dpaulson45 Mar 11, 2024
0d73dc1
Remove multi server support for now
dpaulson45 Mar 12, 2024
4e87975
Merge pull request #2037 from microsoft/MarchSU
dpaulson45 Mar 12, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -236,7 +236,7 @@ function Invoke-XmlConfigurationRemoteAction {
$selectNodes = $contentXml.SelectNodes($action.SelectNodesFilter)
Write-Verbose "Found $($selectNodes.Count) node(s)"

if ($null -eq $selectNodes) {
if ($selectNodes.Count -eq 0) {
Write-Verbose "No nodes were found with the current filter. Unable to perform restore action. Filter: $($action.SelectNodesFilter)"
# TODO: Determine how to handle
continue