To list the subject e-mail names from all certificates issued from a CA named Myentrootca that is located on Cacomputer1, type:
certutil -config cacomputer1\myentrootca -view -out request.email
To restrict the rows displayed to those with request identifiers greater than 10,000 and then display only the request disposition from a CA named Myentrootca, type:
certutil -config cacomputer1\myentrootca -view -out disposition -restrict "requestid>10,000"
To view only the last row, type:
Certutil -config cacomputer1\myentrootca -view -out disposition -restrict "requestid == $"
To view only the second to last row, type:
certutil -config cacomputer1\myentrootca -view -out disposition -restrict "requestid == $ - 1"
To view the subject e-mail names for all requests made to a CA, type:
certutil -view -out email
To display the numeric request identifiers of certificates based on the User template, type:
certutil -view -restrict "Certificate Template=User" -out requestid
To display the numeric request identifiers of certificates based on the template object identifier, 1.2.3.4.5.5.6.6.6.6.5.6, type:
certutil -view -restrict "Certificate Template=1.2.3.4.5.5.6.6.6.6.5.6" -out requestid
To display all serial numbers and request identifier numbers for unrevoked certificates issued by the CA, type:
certutil -view -restrict disposition==20 /out "serialnumber,requestid"
To view e-mail of the users who made the request for a template named MyTemplate and to also view when the request was issued, type:
certutil -config cacomputer1\myentrootca -view -out email -restrict "CertificateTemplate == myTemplate, Disposition == 20"