Windows

通過 Powershell 將遠端機器添加到 AD

  • May 6, 2014

所以我有一個powershell腳本,Add-Computer -ComputerName $computername -LocalCredential $computername\admin -DomainName $domain -Credential domain\$username -Force -Restart

因此,如果我的機器已經脫離域或被禁用,並且我執行以下命令,我會收到錯誤消息:Remove-Computer : Cannot establish the WMI connection to the computer '$computername' with the following error message: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA).

現在我已經驗證了這台機器實際上是在網路上,並且我能夠對它進行 RDP。如果機器在 AD 中不活動,是否有問題或這將不起作用?

想通了,如果我set-item wsman:\localhost\Client\TrustedHosts -value *在我的本地機器上允許來自不受信任的來源的遠端連接,因為證書錯誤不會彈出。

然後將它移動到ScriptBlock它執行。

Add-Computer 將本地電腦添加到域中:連結

您可以嘗試使用PowerShell Remoting添加您的機器

引用自:https://serverfault.com/questions/593152