Hi,
I’m trying to resolve an issue we are facing.
we are able to communicate to Exchange Server EMS Script from remote machine through winRM HTTP authentication.
$newSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri Welcome dragndropbuilder.com - BlueHost.com -Authentication Kerberos -Credential $Credentials
Import-PSSession $newSession
But we have to impose WinRM HTTPS, so I have set everything required for that including certificate creation , winRM settings etc.
And we are able to connect to remote machine where exchange server is available:
Enter-PSSession -ComputerName test.domain.com -Credential $credentials -UseSSL
and this works.
Now when I’m using -UseSSL in New-PSSession/Enter-PSSession for EMS, its not working:
$newSession = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri Welcome dragndropbuilder.com - BlueHost.com -Credential $Credentials -UseSSL
Error: New-PSSession : Parameter set cannot be resolved using the specified named parameters.
Please note: I need WinRM (powershell) Connectivity through HTTPS: -UseSSL Authentication. Not with Kerberos/Defaut/CredSSP