Thursday 30 July 2020

How to import an SSL certificate in the personal store on windows machine

you can use the following command to import an SSL certificate in the personal store for logged in user account on windows machine

certutil -user -p pfxpassword -importPFX pathofCert\abc.pfx


To import an SSL certificate in the personal store for computer account on windows machine

certutil -p pfxpassword -importPFX pathofCert\abc.pfx

P.S: pfxpassword: while generating/exporting the pfx certificate from the CA server or any other machine one which the certificate is already there, you would have given the pfxpassword.
so keep that password noted as you will need it while importing on any machine with the above command or through console. 

No comments:

Post a Comment