I created a root ca using makecert:
makecert -r -pe -n "CN=MyRootCA" -b 01/01/2015 -e 01/01/2020 -ss root -sr localmachine -len 2048
I create a CRL for that root ca and imported this with certmgr:
makecert -crl -n "CN=MyRootCA" -r -sv MyRootCRL.pvk MyRootCRL.crl
I create a certificate(for client authentification) derived from my root ca:
makecert -pe -n "CN=MyClient1" -eku 1.3.6.1.5.5.7.3.2 -is root -ir localmachine -in MyRootCA -ss my -sr currentuser -len 2048
Now the question: How can i revoke my created MyClient1 certificate? I have a CRL in my certmgr but i dont see any possibility to add my MyClient1 certificate to this CRL.
(Im using Windows 7)
Can anyone help me with this problem?