Subject Parameter (Remove-Certificate Cmdlet)
Specifies the subject of the certificate to remove.
Syntax
Remove-Certificate -Subject string
Remarks
Should match the subject of the certificate you want to remove.
When this parameter is set, a search is performed in the current certificate store certificate with matching subject.
If an exact match is not found, the store is searched for subjects containing the value of the parameter.
When setting the parameter to a partial subject, CN= should be omitted. For example, the following code would find the certificate with subject CN=Test Certificate, OU=People, C=US
Example (Searching with partial subject)
-certsubject
"Test"
If a match is not found, the parameter is set to an empty string, and no certificate is selected.
The special value "*" picks a random certificate in the certificate store.
Default Value
"*"
This is a required parameter.