This week I had an error while activating the Hybrid Configuration from Exchange 2013 to Office 365.
During the configuration there was an error, because the Receive connector was set up wrong.
Error:
“HCW8010 Default Receive Connector cannot be found on server” error when you run the Hybrid Configuration wizard
When receiving this error, you can click on the more info button, and visit the website with more info about this error.
When you have solved the error, you click the back button, and try it again.
https://support.microsoft.com/en-gb/kb/3087159
Solution :
(Start Exchange Powershell as an Administrator)
Get-ReceiveConnector –Server <ServerName> | Where {$_.Bindings –match '25'} $rc = Get-ReceiveConnector "<ServerName>\Default Frontend <ServerName>" $rc.Bindings += "[::]:25" Set-ReceiveConnector $rc -Bindings $rc.Bindings