Browse by Tags

28 May 2009
Listing certificates that expire soon
If you are running a Windows Server Certificate Authority, one question I got asked multiple times is how to list certificates that will soon expire. Even though you can easily do this with certutil, I wrapped certutil commands in a simple Powershell script to do this. This script needs to be run on... Read More...
03 October 2008
How to list issued certificates that expires soon
If you wish to list out the soon expiring certificates on your CA, then you can use the following certutil syntax: certutil –view –restrict "NotAfter<=9/1/2008 08:00AM,NotAfter>=10/1/2008 08:00AM" –out "RequestID,RequesterName" The above command will list the certificates expiring... Read More...