扩展架构 - 新属性和新类

发布于 2024-12-28 14:54:48 字数 514 浏览 1 评论 0原文

如果我将新属性添加到 User 类中,那么我就可以使用简单的脚本来更新它。但是,如果我创建一个具有新属性的新类,我将无法更新它,我得到:

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

如果我在用户类上临时添加属性并删除它,问题就解决了,但我有很多新属性包含在四个新属性中类。所以我想我错过了一些步骤。

类和属性处于活动状态。

这就是我更新属性的方式:

Set objUser = GetObject("LDAP://CN=Pepe Perez,CN=Users,DC=myDomain,DC=com") 
objUser.myDescription="D"
objUser.SetInfo

任何线索。

问候, m0dest0。

If I add my new attribute to the User class then I'm able to update it using a simple script. However if I create a new class with new attributes I'm unable to update it, I get:

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

The issue is solved if I add the attribute provisionally on User Class and the remove it but I have a lot of new attributes contained into four new classes. So I think I'm missing some step.

The classes and attributes are active.

This is how I'm updating the attribute:

Set objUser = GetObject("LDAP://CN=Pepe Perez,CN=Users,DC=myDomain,DC=com") 
objUser.myDescription="D"
objUser.SetInfo

Any clues.

Regards,
m0dest0.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

芯好空 2025-01-04 14:54:48

如果 myDescription 是结构类的一部分,则这意味着 CN=Pepe Perez,CN=Users,DC=myDomain,DC=com 是该结构类的对象 (属性objectClass)。如果不是这种情况,它可以解释您收到的消息。

If myDescription is part of a structural class, this means that CN=Pepe Perez,CN=Users,DC=myDomain,DC=com is an object of this structural class (attribute objectClass). If it's not the case it can explain the message you got.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文