我正在尝试使用 Powershell 将计算机加入具有指定 OU 的域。
Add-Computer -domainname mydomain.net -OUPath "OU=W2k8 R2 Servers,OU=Servers,DC=mydomain,DC=net" -cred alloweduser@mydomain.net -passthru –verbose
我得到错误:
This command cannot be executed on target computer('ch88s170') due to following error: Access is denied.
当我使用此命令且未指定 OU 时,它可以工作!?
Add-Computer -domainname mydomain.net -cred alloweduser@mydomain.net -passthru –verbose
这可能是由于 Active Directory 策略限制引起的吗?哪一个?我接下来应该尝试什么来找到解决方案?
PS 防火墙已禁用,Powershell 以管理员身份运行,没有 UAC,操作系统:Windows Server 2008 R2