gpt4 book ai didi

string - 无法将 'System.Object[]'转换为 'System.String'类型

转载 作者:行者123 更新时间:2023-12-02 23:19:19 35 4
gpt4 key购买 nike

当我运行以下代码时,我收到消息

"Set-Item : Cannot convert 'System.Object[]' to the type 'System.String' required by the parameter. Specified method is not supported".



我正在尝试建立与不在域环境上的远程服务器的连接。
在不带脚本的情况下在Powershell控制台上单独运行Set-Item时,由于某种原因,它在不起作用的脚本上起作用。
$passwd = convertto-securestring -String <Password> -AsPlainText -Force 
$cred = New-Object -Typename System.Management.Automation.PSCredential -ArgumentList "developer", $passwd
$server = Read-Host -Prompt 'Input your server IP'

Set-Item wsman:\localhost\client\TrustedHosts -Value $server -Force

$session = new-pssession -computername $server -credential $cred

每一个帮助将不胜感激

最佳答案

当您在此处传递输入时,它应该是一个字符串值和一个对象,如果有逗号或其他内容,则$server不再保留为字符串。
要进行强制转换,可以通过强制类型转换将$server显式转换为String类型:

[String]$server = Read-Host -Prompt 'Input your server IP'

进一步,

我希望您在 Set-Item中对服务器名称进行硬编码,然后查看是否出现错误。您大部分不会得到它。
Set-Item wsman:\localhost\client\TrustedHosts -Value 'YourServerHostname' -Force

因此,请在输入时验证您正在获得哪种输入。

关于string - 无法将 'System.Object[]'转换为 'System.String'类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56374629/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com