我想通过使用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并获取属性,是否可以这样做?