Skip to content

Commit

Permalink
Fixed a bug found by customer
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaulson45 committed Feb 10, 2025
1 parent f8914c5 commit 217b864
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -622,9 +622,14 @@ function Invoke-AnalyzerExchangeInformation {
}
Add-AnalyzedResultInformation @params

if ($getExchangeServer.FeaturesEnabled.Count -gt 0) {
$details = ([string]::Join(", ", $getExchangeServer.FeaturesEnabled))
} else {
$details = "None Enabled"
}
$params = $flightingBaseParams + @{
Name = "Features Enabled"
Details = ([string]::Join(", ", $getExchangeServer.FeaturesEnabled))
Details = $details
}
Add-AnalyzedResultInformation @params

Expand Down

0 comments on commit 217b864

Please sign in to comment.