Powershell – Connexion et authentification Exchange 2013

Permet de s’authentifier depuis un commande Powershell sur un serveur Exchange 2013

 
$sessionOption = New-PsSessionOption -SkipCACheck -SkipCNCheck -SkipRevocationCheck
$credential = $host.ui.PromptForCredential("Connexion Exchange 2013", "Merci de renseigner votre compte.","DOMAINE\UTILISATEUR","NetBiosUserName")
$session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri "http://DOMAINE/powershell" -Credential $Credential -Authentication kerberos
Import-PSSession $session

 

Taggé , , .Mettre en favori le Permaliens.

Les commentaires sont fermés.