On a previous server when we used the built in SBS wizard to renew the certificate it worked, however it reset all of the computers on the domain's IE home page to companyweb.
Is there a way to do the renew without resetting everyone homepage?
On a previous server when we used the built in SBS wizard to renew the certificate it worked, however it reset all of the computers on the domain's IE home page to companyweb.
Is there a way to do the renew without resetting everyone homepage?
In the exchange management shell run Get-ExchangeCertificate
to get the thumbprint on the cert you're trying to renew then run the following:
Get-ExchangeCertificate <thumbprint> | New-ExchangeCertificate | Enable-ExchangeCertificate -services pop,imap,smtp,iis
If using SBS2011 then
This will then re-issue a new self signed certificate on the server.
I did this in SBS2011:
Open Exchange Management Console > navigate to Server Configuration and review the Certificates in the right panel
Identify the certificate that has expired (take note of the subject name and the services)
Start ExMngmtnShell as Administrator
type Get-ExchangeCertificate to list the installed certificates
Match the certificate to the expired certificate (using subject the name and services) from the Console then copy the associated thumbprint
Type Get-ExchangeCertificate –Thumbprint INSERTTHUMBPRINTHERE | New-ExchangeCertificate
Type Y to renew the certificate
You can confirm the new certificate is installed and associated with the correct services either by running Step 4 or Step 1/2.
Remove the old expired certificate either from the Console or from the Shell using Remove-ExchangeCertificate -Thumbprint INSERTTHUMBPRINTHERE
Note: I had to restart the server for the certificate to take effect.
Thank you TeeC
The only step I had to do to fix Phones as well as RPC over HTTP in outlook clients not being able to connect was to assign the correct certificate to IIS... For some reason the renewal removed it... However, it was an easy fix: (After many searches)
From the exchange 2010 console go to servers, find the certificate for the site your phones point to on the below column right click and select assign to services and select IIS, and click finish
Else from Ps
enable-exchangecertificate -thumbprint xxxxxxxxx -services iis
You will have to restart IIS after this. you should see the certificate in the browser
This worked for me:
Start ExMngmtnShell as Administrator
type Get-ExchangeCertificate to list the installed certificates
Match the certificate to the expired certificate (using subject the name and services) from the Console then copy the associated thumbprint
Type Get-ExchangeCertificate –Thumbprint INSERTTHUMBPRINTHERE | New-ExchangeCertificate
Type Y to renew the certificate
Restart SBS2008/2011 Console or restart server.