What to do about and expired or about to expire certificate

GREG ROBERTS 1 Reputation point
2021-11-15T15:22:16.827+00:00

From Event Viewer "Certificate for local system with Thumbprint 70 c4 c2 a6 2b f3 34 e2 c8 74 98 56 51 f6 a4 bf a8 c6 e7 21 is about to expire or already expired."

What should I do about this?

Greg

Windows for business | Windows Client for IT Pros | User experience | Other
{count} votes

1 answer

Sort by: Most helpful
  1. Michael Taylor 60,346 Reputation points
    2021-11-15T17:23:46.37+00:00

    It happens. Certs are only good for a while and then they expire. You should determine who (if anyone ) is using the cert. Go to the certificates app and find the certificate. Given that the expiration date has expired it is probably easiest to scan the list (probably under your person account) for expired certs. If the cert was generated by your IT group then talk to them about removing the old cert. If it is related to an app you run (like Fiddler) then check in that app to refresh the cert.

    If the cert is provided by MS then one of their updates should renew or replace the cert.

    Alternatively you can use Powershell to find the cert by its thumbprint (given in the error).

    Get-ChildItem cert:\*<thumbprint> -recurse | Select-Object -Property Subject, NotAfter
    
    1 person found this answer helpful.

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.