Exchange 2016
A carbon copy of Exchange 2013.
The next steps we are going to do using Exchange powershell.
- Open up Exchange Management Shell as administrator
- Check what certificate the send connector is using by issuing the command below: (make note of the send connector name)
Get-SendConnector | fl
- Get the thumbprint of the new certificate that you've just imported:
Get-ExchangeCertificate | fl
- Make note of the thumbprint and issue the following commands:
$certificate = Get-ExchangeCertificate -Thumbprint "<insert thumbprint>"
$tlscertificatename = "<i>$($certificate.Issuer)<s>$($certificate.Subject)"
Set-SendConnector "Name of Send connector" -TlsCertificateName $tlscertificatename
- Confirm that the commands you have just run were successful, by issuing the following command:
Get-SendConnector | fl
- Enable the certificate with SMTP services using the command below:
Enable-ExchangeCertificate "<insert thumbprint>" -services SMTP
- Repeat the above steps, incase you have any receive connectors that are using TLS: