Powershell Remoting with Exchange Online

Hallo zusammen,

Ich habe mir mal angeschaut, wie man mit der Powershell auf Exchange Online zugreifen kann

$cred = Get-Credential
$ExSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/PowerShell/ -Credential $cred -Authentication Basic -AllowRedirection
Import-PSSession -Session $ExSession
Remove-PSSession $ExSession

Grüsse
Andres Bohren