gpt4 book ai didi

c# DirectoryEntry InvokeSet HomeDirectory 和 HomeDrive,错误

转载 作者:行者123 更新时间:2023-11-30 14:16:27 33 4
gpt4 key购买 nike

我正在尝试为指定 OU 中的每个 AD 用户修改配置文件/主目录/主驱动器设置,

我在下面有一些非常基本的代码可以实现这一壮举,但却抛出了以下异常:

The requested operation did not satisfy one or more constraints associated with the class of the object.

有没有人遇到过这个问题,如果有,有办法解决吗?

谢谢。

DirectoryEntry Entry = new DirectoryEntry("LDAP://OU=Company,DC=corp,DC=Placeholder,DC=com", null, null, AuthenticationTypes.Secure);

DirectorySearcher Searcher = new DirectorySearcher(Entry);
Searcher.SearchScope = SearchScope.Subtree;

Searcher.PropertiesToLoad.Add("sAMAccountName");
Searcher.Filter = "(&(objectClass=user)(objectCategory=person))";

foreach (SearchResult AdObj in Searcher.FindAll())
{
Entry.InvokeSet("HomeDirectory", @"\\winfileserver\" + Convert.ToString(AdObj.Properties["sAMAccountName"][0]));
Entry.InvokeSet("HomeDrive", "H");
Entry.CommitChanges();
}
catch (Exception ex)
{
richTextBox1.Text += ex.Message;
}

最佳答案

也没有理由调用 InvokeSet。这是执行此操作的正确方法:

foreach (SearchResult AdObj in Searcher.FindAll()) { 
DirectoryEntry user = AdObj.GetDirectoryEntry();
user.Properties["HomeDirectory"].Value = @"\\winfileserver\" + Convert.ToString(AdObj.Properties["sAMAccountName"][0]);
user.Properties["HomeDrive"].Value = "H";
user.CommitChanges();
}

关于c# DirectoryEntry InvokeSet HomeDirectory 和 HomeDrive,错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7561152/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com