I have a certificate installed in windows server 2003
The path I can see from MMC is: Certificates(Local Computer)/Personal/Certificates
I want to configure it i
Try storeName="My", that's the usual value.
As far as makecert commands go (like below):
makecert -sk MyKeyName -iv RootCaClientTest.pvk -n "CN=tempClientcert" -ic
RootCaClientTest.cer -sr currentuser -ss My -sky signature -pe
The "-ss
" specifies the store name for the certificate. "My
" is the personal store location of the certificate."