How do I know what the storeName of a certificate is?

后端 未结 3 1431
礼貌的吻别
礼貌的吻别 2021-02-20 12:25

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

3条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-20 13:08

    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."

提交回复
热议问题