Hi Lucas Peñaloza,
Seeing a certificate flagged as expired when its listed validity dates show it is still within its active lifecycle is a common scenario in Windows environments. The discrepancy occurs because the general directory view in the Certificates manager simply displays the static text fields of the certificate, while opening the certificate properties actively triggers the Windows Cryptography API to evaluate the entire chain of trust. The specific error message you are seeing usually means that while your individual end-entity certificate is temporally valid, one of the parent certificates in the hierarchy has exceeded its own validity period or is not yet valid.
To confirm exactly which part of the chain is failing, you should inspect the trust hierarchy directly by switching to the Certification Path tab within that same certificate properties window. This view maps out the cryptographic relationship between your local certificate, the intermediate authority, and the ultimate Root CA. You will typically find a red error icon on the specific parent authority that has expired or is causing the trust validation failure.
Resolving this issue requires addressing the problematic parent authority rather than the leaf certificate itself. The administrators responsible for your internal PKI environment must renew the expired Intermediate or Root CA certificate and distribute the updated public certificate to all client and server machines. In an Active Directory environment, this is standardly handled by deploying the new certificate via Group Policy to the Trusted Root or Intermediate Certification Authorities stores. If the certification path unexpectedly appears entirely healthy with no red icons, you should verify that the local operating system clock is accurate, as a severely desynchronized local system clock skewed outside the certificate's validity window can also trigger this exact active evaluation failure.
Hope this answer brought you some useful information. If it did, please hit "accept answer". Should you have any questions, feel free to leave a comment.
VP