所以我有一个 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 中不活跃,这将不起作用吗?
答案1
弄清楚了,如果我set-item wsman:\localhost\Client\TrustedHosts -value *
在本地机器上允许来自不受信任来源的远程连接,就不会弹出证书错误。
然后将其移入ScriptBlock
运行中。
答案2
Add-Computer 会将本地计算机添加到域:关联
您可以尝试使用以下方式添加您的机器PowerShell 远程处理
答案3
假设你的机器在线,请确保远程注册表服务正在运行且可访问,即禁用防火墙或创建例外。