top of page
Rechercher
Doxia

Se connecter à Exchange Online en PowerShell


Problème ou Besoin Pour certaines tâche d'administration Exchange, vous devrez vous connecter en PowerShell sur votre environnement Exchange Online.

Solutions: La méthode officielle (qui ne supporte pas MFA) peut être consultée directement à partir du site de Microsoft:  https://docs.microsoft.com/fr-fr/powershell/exchange/exchange-online/connect-to-exchange-online-powershell/connect-to-exchange-online-powershell?view=exchange-ps


Si votre compte d'administration est configuré avec l'authentification multi-facteurs (MFA), vous pouvez démarrer votre session PowerShell directement à partir de la console d'administration Exchange Online (Web), depuis le menu HYBRID et en cliquant sur le bouton CONFIGURER. Pour ceux qui doivent effectuer des opérations PowerShell régulièrement, vous apprécierez particulièrement les scripts suivants:

  • Pour se connecter à Exchange Online PowerShell, utilisez ce script PS1: 

$UserCredential = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection Import-PSSession $Session -DisableNameChecking


763 vues0 commentaire

Comments


bottom of page