Exchange connection issues
The adapter uses remote powershell sessions to manage Exchange servers. If the adapter has issues connecting to the servers, you can manually run the powershell cmdlets that the adapter uses to troubleshoot the connection errors.
New-PSSession
Use the following command to create a new session on the remote server. Replace <hostAddr> with the actual hostname or IP of the Exchange server.
PS>$mySession = New-PSSession -configurationname Microsoft.Exchange -connectionuri http://<hostAddr>/Powershell -authentication Kerberos
import-pssession
Use the following command to import the remote session into your local session. If this command
is successful, you should be able to run any Exchange cmdlets as if you are on the Exchange
server.
PS>import-pssession $mySession