I need to create certification for my service by getting a trusted root certificate. I tried to create a private key certificate:
makecert -pe -sk Esb -iv root.pvk -n "CN=localhost" -ic root.cer -sky exchange -ss my serviceCert.cer
This installs the certificate to my store, but when I try to export it, it says: "The associated private key is marked as not exportable makecert." What am I doing wrong?
source
share