1

So Win8.1 and 2012 R2 includes a neat new cmdlet to install certs:

Import-Certificate [-FilePath] <String> [-CertStoreLocation <String> ] [-Confirm] [-WhatIf] [ <CommonParameters>]

Unfortunately I found it does not install CRLs- booo. This is weird especially because the equivalent certutil.exe command can do both indiscriminately:

certutil -addstore -f Root <whatev.crt | whatev.crl>

I was not able to find an "Import-CertificateRevocationList" either. Seems like an oversight which is why I want to confirm there actually is no simple, native cmdlet for this (not multi-line scripts or 3rd party cmdlets like Quest).

Is there really no cmdlet for this?

red888
  • 4,183
  • 18
  • 64
  • 111

1 Answers1

2

Not yet. Keep using certutil.exe.

Ryan Ries
  • 55,481
  • 10
  • 142
  • 199