我需要在远程计算机上导入证书,并且尝试使用在another Stack's question上检查的PowerShell命令。
我运行以下命令:
Enter-PSSession -ComputerName <remote_machine>
Import-PFXCertificate -FilePath \\server\path\to\cert.pfx -CertStoreLocation Cert:\CurrentUser\My -Password (ConvertTo-SecureString -String "<cert_password>" -AsPlainText -Force)
Exit-PSSession
运行命令后输出:
PSParentPath: Microsoft.PowerShell.Security\Certificate::CurrentUser\My
Thumbprint Subject
---------- -------
8829C4E7CCE1D5077E9AEB15BD8BE6EE07CE4D95 E=user@contoso.com, CN=user, OU=Users, DC=contoso, DC=local
我检查了远程计算机,但未安装证书。
有人可以帮助我吗?