Hi @Rudolf Amarlapudi ,
From your description, now you only need to renew the expired "Microsoft Exchange Server Auth Certificate". You can follow the first link shared by Andy for the renew procedure or refer to the steps below which are virtually identical:
1.Click the Renew button in EAC.
2.Double click the "Microsoft Exchange Server Auth Certificate", go to the General tab, scroll down and find the new thumbprint, take a note of it for later commands.
3. Put the required information for the next command into variable:
(replace the "NewCertificateThumbprint" with the thumbprint in step2 )
$thumb = "NewCertificateThumbprint"
$date = get-date
4.Run the command below to add the new certificate:
Set-AuthConfig -NewCertificateThumbprint $thumb -NewCertificateEffectiveDate $date
You will get a warning that the new effective date is not 48 hours in the future, but we're OK with that so you can just ignore it.
5.Publish the certificate to all servers using the following command:
Set-AuthConfig -PublishCertificate
6.Then you can remove the old expired certificate from the configuration:
Set-AuthConfig -ClearPreviousCertificate
7.Run an IISReset for the change to take effect.
Here's one more link for your reference:
Expired Microsoft Exchange Server Auth Certificate
Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
If an Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.