Vidéo: Comment se connecter a Powershell en ligne Office 365 pour Exchange?
Pré requis:
https://technet.microsoft.com/fr-fr/library/jj984289(v=exchg.150).aspx
Voici le script utilisé:
Set-ExecutionPolicy RemoteSigned
$LiveCred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.outlook.com/powershell/ -Credential $LiveCred -Authentication Basic -AllowRedirection
Import-PSSession $Session
pour se déconnecter:
Get-pssession | remove-pssession
Vidéo: https://youtu.be/XX0HYyC54bEPublish