...
In the MMC, navigate to Certificates (Local Computer) (or Certificates - Current User).
Expand the tree and locate Trusted Root Certification Authorities.
...
Import Root Certificate:
...
In the MMC, expand the tree for Certificates (Local Computer) or Certificates - Current User.
Right-click Personal > All Tasks > Import.
...
In the Certificate Import Wizard, select your client certificate (.pfx or .p12 file). If you have .crt and .key file then you need to combine them in .p12 file. The following command can be used to to so.
Code Block openssl pkcs12 -export -out combined.p12 -inkey your_private_key.key -in your_certificate.crt -name "your_cert_alias"
If the certificate is protected by a password, you will be prompted to enter it.
...