将Object移动到Active Directory中的OU
本文关键字:Directory 中的 OU Active Object 移动 | 更新日期: 2023-09-27 18:10:44
我想将计算机对象移动到另一个OU,我连接到另一个域,我总是得到ComException "A referral was returned from the server"
类型的异常,对象从不移动!
try
{
//I get the exception here
computerObject.MoveTo(new DirectoryEntry("LDAP://OU=someOU,OU=parentOU,DC=test,DC=com"));
computerObject.CommitChanges();
}
catch (InvalidOperationException inOp)
{
//log
}
catch (COMException comEx)
{
//log
}
//joinPath.Close();
finally
{
computerObject.Close();
}
用于故障排除我稍微更改了代码,但它仍然不起作用。
computerObject.MoveTo(new DirectoryEntry("LDAP://OU=someOU,OU=parentOU,DC=test,DC=com"),
"admin@test.com","somepassowrd",AuthenticationTypes.Secure));
新增异常类型为ComException "Logon failure: unknown user name or bad password."
我检查了活动目录中是否存在OU,并且我有足够的权限。
我在这里遵循微软文档https://msdn.microsoft.com/en-us/library/ms180856(v=vs.90).aspx还有很多关于stackoverflow的问题。
更新:我在一个域中运行我的应用程序,并在另一个域中进行更改,这可能是问题的原因
我在同一个域中发布了我的代码,它运行得很好
在这个方法中有一个额外的括号:
computerObject.MoveTo(new DirectoryEntry("LDAP://OU=someOU,OU=parentOU,DC=test,DC=com"),"admin@test.com","somepassowrd",AuthenticationTypes.Secure));
应该是
computerObject.MoveTo(new DirectoryEntry("LDAP://OU=someOU,OU=parentOU,DC=test,DC=com","admin@test.com", "somepassowrd", AuthenticationTypes.Secure));
这当然可以解释异常,我很惊讶你的调试器没有捕捉到它,除非你是手写的,或者你可能错误地将它输入到你的问题中?