Skip to content

Commit

Permalink
Merge pull request #1766 from microsoft/dpaul-EpDev
Browse files Browse the repository at this point in the history
Make sure the return results is an array to allow .Count to work
  • Loading branch information
dpaulson45 authored Jul 19, 2023
2 parents 42e36f3 + 9b38ef4 commit 0d49994
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ begin {
$counter = 0
$totalCount = $ExchangeServers.Count
$outlookAnywhereCount = 0
$outlookAnywhereServers = $ExchangeServersPrerequisitesCheckSettingsCheck | Where-Object { $_.IsClientAccessServer -eq $true }
$outlookAnywhereServers = @($ExchangeServersPrerequisitesCheckSettingsCheck | Where-Object { $_.IsClientAccessServer -eq $true })
$outlookAnywhereTotalCount = $outlookAnywhereServers.Count

$progressParams = @{
Expand Down

0 comments on commit 0d49994

Please sign in to comment.