I have a certificate file (.cer) and associated password file (.pvk). I can create and install this to Root.
When I run makecert to create a new certificate that is based on the .cer and .pvk files it uninstalls the original certificate from the store:
@ECHO OFF
REM This batch creates a X509 certificate that is issued by an existing authority certificate.
REM USAGE: MakeCertificate.bat makecert.exe "CN=WIF_RP_MVC" WIF_RP_MVC SuncoastSolutionsIssuingCA.cer SuncoastSolutionsIssuingCA_Keyfile.pvk
REM -n subjectName. Specifies the subject name. The convention is to prefix the subject name with "CN = " for "Common Name".
REM -ic file. Specifies the issuer's certificate file.
REM -iv pvkFile. Specifies the issuer's .pvk private key file
REM -iky keytype. Specifies the issuer's key type (signature or echange)
REM -sr location. Specifies the subject's key location
REM -cy certType. Specifies the certificate type (end or authority)
REM NOTE: You will be prompted for the password that is found in the keyfile.
SET makecert=%1
SET name=%2
SET filename=%3
SET issuerCertificateFile=%4
SET issuerPasswordFile=%5
%makecert% -n %name% -ic %issuerCertificateFile% -iv %issuerPasswordFile% -iky exchange -sr localmachine -cy end %filename%
How can I prevent the original cert that is installed from being uninstalled?