Authentifizierung mit Multi-Faktor und ohne
Anmeldung an Exchange Online mit MFA:
Connect-EXOPSSession -UserPrincipalName mail@joernwalter.de
Get-Mailbox -ResultSize unlimited | ? {$_.RecipientTypeDetails -eq “UserMailbox”} | Get-MailboxRegionalConfiguration
Anmeldung an Exchange Online ohne MFA:
$userdaten = Get-Credential
$sitzung = New-PSSession -ConfigurationName Microsoft.Exchange `
-ConnectionUri `
-Credential $userdaten -Authentication Basic -AllowRedirection
Import-PSSession $sitzung
https://www.der-windows-papst.de/2019/11/21/exchange-2016-blacklist/