我正在尝试通过power-shell脚本安装证书。我正在使用microsoft的power shell网站上建议的Import-Certificate
。这是我的代码
$script = {
$file = ( Get-ChildItem -Path C:\Users\Administrator\Desktop\newCert.cer )
$file | Import-Certificate -CertStoreLocation cert:\CurrentUser\Root
echo $file
}
invoke-command -Credential $clientCred -ComputerName $ClientIP -ScriptBlock $script
然后我收到以下错误。
UI is not allowed in this operation
+ CategoryInfo : InvalidArgument: (:) [Import-Certificate], ArgumentException
不确定这是哪里出错的。如果有人能指出我正确的方向,那将会非常有用。