Update certificate on Send and Receive connectors in Exchange Hybrid - aaqibwani/M365 GitHub Wiki
- Identify the certificate and copy its thumbprint:
Get-ExchangeCertificate
- Run:
$cert = Get-ExchangeCertificate -Thumbprint <paste the thumbprint here>
$tlscertificatename = "<I>" + $($cert.Issuer) + "<S>" + $($cert.Subject)
Set-SendConnector "Outbound to Office 365" -TlsCertificateName $tlscertificatename
Set-ReceiveConnector "Default Frontend" -TlsCertificateName $tlscertificatename
- Restart the Transport service