Programmatically install Certificate Revocation List (CRL)

前端 未结 4 1000
天涯浪人
天涯浪人 2021-02-06 09:09

I need to download and install about 50 CRLs once a week and install them on several Windows servers. Downloading is the easy part, is there a way I could script the CRL import

4条回答
  •  轮回少年
    2021-02-06 09:52

    Hm. Is there any reason not to use the certutil.exe utility? I can import a Certificate Revocation List into the appropriate store by running the following command:

    certutil -addstore CA .crl
    

提交回复
热议问题