Import Certificate to Trusted Root but not to Personal [Command Line]

前端 未结 5 1952
时光说笑
时光说笑 2021-01-31 17:14

I am trying to import two certificates to my local machine using the command line.

I have one certificate to add to the Personal Store of the local machine, and another

5条回答
  •  -上瘾入骨i
    2021-01-31 18:00

    Look at the documentation of certutil.exe and -addstore option.

    I tried

    certutil -addstore "Root" "c:\cacert.cer"
    

    and it worked well (meaning The certificate landed in Trusted Root of LocalMachine store).

    EDIT:

    If there are multiple certificates in a pfx file (key + corresponding certificate and a CA certificate) then this command worked well for me:

    certutil -importpfx c:\somepfx.pfx
    

    EDIT2:

    To import CA certificate to Intermediate Certification Authorities store run following command

    certutil -addstore "CA" "c:\intermediate_cacert.cer"
    

提交回复
热议问题