When you start Outlook you may receive a message from your outlook clients that the certificate is no longer valid. This is down to your self signed certificates expiring. A self signed certificate is used so that the Exchange server and the Outlook client trust each other and can connect without any issues.
We need to remove the expired certificate from Exchange 2007 or Exchange 2010 and then create a new certificate and allocate the correct services to the new certificate. There are two ways we can do this, this guide will show you how to remove the current expired certificate and create a new self signed, the other option is to remove the certificate with the guide below and then use a certificate from a trusted certificate authority such as GoDaddy
OK so lets first Identify the expired certificate. We do this by running the following command.
Get-ExchangeCertificate |FL
This will show a screen similar to the below, search for the date that is expired I have high lighted it below. Also copy and paste the “Thumbprint” to notepad , as we will need that.
As you can see, this cert has expired so we need to remove it. To do so run the command below. Replacing the thumbprint with YOUR thumbprint.
remove-ExchangeCertificate -Thumbprint "2342342342334234
Once done we now need to create a new certificate. You can create a UCC certificate request on GoDaddy
New-ExchangeCertificate
This will create a new certificate for you, we now need this thumbprint so we can allocate a service to it. so enter again..
Get-ExchangeCertificate
Again make a note of your new thumbprint.
Now we are going to allocate the service to the new certificate. To do this we run the command below each time for each service. So run it for “Smtp”,”IIS”,”IMAP” and “POP” if you require it. Remember to replace the thumbprint with the one you copied to notepad earlier.
Enable-ExchangeCertificate -Thumbprint "234234234234234234" -Service "IMAP"
You wil get asked if you would like all services to go on this certificate select “A” and it will allocate the services. If you want to allocate the services manually then run the above command again for each service, IIS,POP,SMTP or IMAP.
Here is how to setup an SSL Certificate in Exchange 2013.