在Cert:\ LocalMachine \ My中从现有证书创建证书而不直接克隆

时间:2018-04-18 04:45:34

标签: powershell-v2.0 x509certificate2 pfx

我想通过使用New-SelfSignedCertificate从现有证书创建新证书,但不想使用-clone属性。

目前

Import-PfxCertificate -Exportable -FilePath encryption.pfx -CertStoreLocation Cert:\LocalMachine\My -Password $securePwd | out-null;

然后使用以下内容创建新证书

Set-Location -Path "cert:\LocalMachine\My"
$OldCert = (Get-ChildItem -Path thumbprint)
New-SelfSignedCertificate -CloneCert $OldCert

我想跳过import和-clonecert的过程,但是可以直接查看cert并获取属性,是否可以这样做?

0 个答案:

没有答案