Issue
Troubleshooting remote PowerShell on Exchange Pro server
Solution
To verify that remote Powershell is working correctly for Exchange Pro, run these commands manually in Windows Powershell on your Windows 2008 R2 server where Exchange Pro is or will be installed.
$cred = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://<CAS_server_FQDN>/powershell/ -Credential $cred -Authentication Basic
Import-PSSession $Session
Get-Mailbox
If these commands run successfully, you have a working configuration. Don't forget to close the session before exiting Powershell.
Remove-PSSession $Session
exit
© ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center