我正在尝试将证书导入“个人”证书存储下的“本地计算机”帐户。
尽管在运行以下 2 个命令之一时,证书被导入到一个新的证书存储中,也称为 Personal。
第一个命令:
Import-Certificate -FilePath "C:\Users\myUser\Desktop\LabCert.cer" -CertStoreLocation 'Cert:\LocalMachine\Personal' -Verbose
第二条命令:
CertUtil -v -addstore "Personal" "C:\Users\myUser\Desktop\LabCert.cer"
有人可以告诉我如何将我的证书导入原始个人商店吗?谢谢