Hi,
Based on my knowledge, if the service is assigned to the certificate, we will not be able to delete the service unless we apply for a new certificate and assign the service to the new certificate, and then remove the old certificate. However, we cannot delete the three self-signed certificates that come with Exchange, otherwise there may be problems with the use of Exchange.
1.First of all, I run the following command line in my Exchange 2013 lab environment, also ineffective
Enable-ExchangeCertificate -Thumbprint <> -Services None
2.Please following the steps below to bind the specific certificate to the receive/send connector and see if the issue is resolved:
1)Please run the following command to get information of your certificate:
Get-ExchangeCertificate
2)Please run the following command to Capture the certificate as a variable.
$cert = Get-ExchangeCertificate -Thumbprint <>
3) In order to configure the certificate on the receive connector, please run the following command to create a special string that contains the issuer and the subject of the certificate:
$tlscertificatename = "<i>$($cert.Issuer)<s>$($cert.Subject)"
4) Please run the following command to configure the receive connector:
Set-ReceiveConnector "<>" -TlsCertificateName $tlscertificatename
Set-SendConnector "<>" -TlsCertificateName $tlscertificatename
For more information you could refer to: Configuring the TLS Certificate Name for Exchange Server Receive Connectors and Configuring a Certificate on Exchange Receive Connector
Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.