How to check expiry date of pfx file?

47k views Asked by At

How should I check the expiry date of pfx file? Can this be done in Visual Studio?

1

There are 1 answers

1
Rolo On BEST ANSWER

As explained here, you can review the information of the certificate before import it using:

certutil -dump YourCertificate.pfx

If you want to run this from Visual Studio you can do this:

  1. Go to Tools > External Tools > Add
  2. Set the required info: Name=CertUtil Command=C:\Windows\System32\certutil.exe Arguments=-p YourPass -dump $(ItemPath). Check Use output window.

With this you can execute the command for the selected file in Visual Studio.