我目前正在尝试使用以下命令将Windows Server 2016 Vm添加到我们的域中。
Add-Computer -ComputerName $ServerName -NewName $ServerName -LocalCredential $localCreds -Credential $adcreds -DomainName mydomain.net -OUPath $ou -Force
该命令创建AD计算机对象,并在服务器重新启动之前重命名该服务器。
但是,cmdlet运行大约15分钟,然后给出了以下错误:
Add-Computer : Cannot establish the WMI connection to the computer 'SERVER' with the following error message: The remote procedure call failed. (Exception from HRESULT: 0x800706BE).
我们的Windows Server 2012 R2 Build没有遇到这个问题。
答案 0 :(得分:0)
看起来验证失败。您可以尝试通过以下代码示例连接到远程计算机:
Net use \$servername\IPC$ /User:Administrator $LocalCreds.GetNetworkcredential().password
之后,再次尝试你的命令。