diff --git a/CHANGELOG.md b/CHANGELOG.md index 54fe1b8..220f468 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ The format is based on and uses the types of changes according to [Keep a Change - Fixed test 1.3.1 to include notification window for password expiration. - Fixed 6.1.1 test definition to include the correct connection. +- Removed banner from EXO connection step. ### Added diff --git a/source/Private/Connect-M365Suite.ps1 b/source/Private/Connect-M365Suite.ps1 index ee7b7c4..741444c 100644 --- a/source/Private/Connect-M365Suite.ps1 +++ b/source/Private/Connect-M365Suite.ps1 @@ -59,7 +59,7 @@ function Connect-M365Suite { if ($RequiredConnections -contains "EXO" -or $RequiredConnections -contains "AzureAD | EXO" -or $RequiredConnections -contains "Microsoft Teams | EXO" -or $RequiredConnections -contains "EXO | Microsoft Graph") { Write-Host "Connecting to Exchange Online..." -ForegroundColor Cyan - Connect-ExchangeOnline | Out-Null + Connect-ExchangeOnline -ShowBanner $false | Out-Null $exoTenant = (Get-OrganizationConfig).Identity $tenantInfo += [PSCustomObject]@{ Service = "Exchange Online"