Exchange 2013
Replace a certificate for Exchange 2013
- Access the Exchange Admin Center by opening a web browser and visiting https://localhost/ecp
- On the left side bar, select Servers > Certificates.
- Import your certificate
- Select the certificate that you've just imported and click on it > Services
- Select the services where you want the certificate enabled, e.g:
SMTP, IMAP, POP and IIS
Got a Hyrbid Exchange environment and use TLS send connectors?
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: