Add-Computer将VM添加到域,然后WMI失败

时间:2017-07-03 21:22:53

标签: powershell active-directory

我目前正在尝试使用以下命令将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没有遇到这个问题。

1 个答案:

答案 0 :(得分:0)

看起来验证失败。您可以尝试通过以下代码示例连接到远程计算机:

Net use \$servername\IPC$ /User:Administrator $LocalCreds.GetNetworkcredential().password

之后,再次尝试你的命令。