使用makecert.exe
我可以使用以下命令获取pvk文件并生成CRL:
makecert.exe -crl -n“CN = Foobar”-r -sv“Foobar.pvk”“Foobar.crl”
等效的Powershell命令是什么?
以下代码使用Powershell生成PVK和CER文件,但我无法弄清楚如何生成CRL
$rootcert = New-SelfSignedCertificate -DnsName "CN=Foobar" -CertStoreLocation cert:\LocalMachine\My
$PFXPass = ConvertTo-SecureString -String "my password" -Force -AsPlainText
Export-PfxCertificate -Cert $('cert:\LocalMachine\My\' + $rootcert.Thumbprint) -Password $PFXPass -FilePath "Foobar.pvk"
Export-Certificate -Cert $('cert:\LocalMachine\My\' + $rootcert.Thumbprint) -FilePath "Foobar.cer"
答案 0 :(得分:0)
要考虑三件事:
makecert.exe
工具已弃用,不再推荐使用:MakeCert。