Hi, I am following an issue with Exchange module in SolidCP version 1.4.7
It keeps a kind of loop and does not end until iisreset the Exchange Server.
Seems that it's related to powershell remote connection.
If I try negotiate authentication, it does not work. If I use kerberos, everythink goes fine. ¿It is possible to make SolidCP to connect Exchange Servers using Kerberos?
In this example, I am using kerberos and can connect fine from a shell:
$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri http://Exchange01/PowerShell/ -Authentication Kerberos -Credential $UserCredential -AllowRedirection
I found the problem. All seems related to the Hosted Microsoft Exchange Server 2016 Powershell URI.
In SolidCP I must put the URL including the "/" at the end - AND https. Like this:
https://Exchange01/PowerShell/
Missing that, will result in this loop or constant errors. By the way, I am using Exchange 2016 CU18
regards!