+3 votes
271 views
How to renew expired Exchange 2007 certificate

in Exchange by (551k points)
reopened | 271 views

1 Answer

+4 votes
Best answer

We can find that our Exchange 2007 server has expired our certificate, by default when installing our Exchange 2007 server we will see that it generates a certificate issued by the server through its internal CA with a duration of 1 year. To renew it for 5 years we have to do the following:


First it is convenient to make a backup copy of the certificate just in case.
  • We go to the Exchange PowerShell, it is located at:
 Start / All Programs / Microsoft Exchange 2007 / Microsoft Exchange Management Shell 

  • Once inside, we introduce the following command to know which is the Exchange certificate to generate the renewal:
 Get-ExchangeCertificate 

  • Viewing the certificates that we have on the server, we will renew by cloning the certificate already signed, we will keep all the data but the validity will be renewed from this moment to 5 years onwards. As you can see we will see Thumbprint , the services have associated and additional information. Copy the Thumbprint of the Exchange certificate that we want to renew, then enter the following command, taking into account that if you want to put fewer services you can exclude them or include them according to your purpose or needs:
 Get-ExchangeCertificate <thumbprint> | New-ExchangeCertificate -Services SMTP, POP, IMAP, IIS 

  • Once the certificate has been cloned to a new one, we verify that our certificate is integrated through the following command:
 Get-ExchangeCertificate 

  • Finally, we only have to enable the new certificate:
 Enable-ExchangeCertificate <thumbprint> 
  • And eliminate the old one with:
 Remove-ExchangeCertificate -Thumbprint 


Take into account that it will take a few minutes to start recognizing the new certificate through Owa or Outlook etc. .. you will only have to reinstall it in the client machines and you will have everything renewed for 5 more years.

by (3.5m points)

Related questions

+4 votes
1 answer
asked Jun 24, 2019 in Exchange by backtothefuture (551k points) | 248 views
+3 votes
1 answer
+4 votes
1 answer
asked Jun 24, 2019 in Exchange by backtothefuture (551k points) | 226 views
+3 votes
2 answers
asked May 26, 2019 in Linux / Unix by backtothefuture (551k points) | 548 views
+5 votes
1 answer
Sponsored articles cost $40 per post. You can contact us via Feedback
10,634 questions
10,766 answers
510 comments
3 users