目录服务 - 设置 AccountIsDisabled

发布于 2024-12-26 13:05:03 字数 467 浏览 1 评论 0原文

我正在从外部 HR 系统更新 ActiveDirectory。无论帐户是否被禁用,该系统都会生成 True/False 值。 我注意到(从这个很棒的论坛)如何组合用户帐户控件的示例,但有一个问题。

如果我按照 Marc 在上一篇文章中建议的那样

const int UF_ACCOUNTDISABLE = 0x0002;
const int UF_NORMAL_ACCOUNT = 0x0200;

int userControlFlags = UF_NORMAL_ACCOUNT

newUser.Properties["userAccountControl"].Value = userControlFlags;

,并根据真/假值更改 UF_NORMAL .. UF_ACCOUNTDISABLE,我不会删除任何其他标志吗?或者我只是为最初存在的东西添加另一个价值? (我猜并非所有帐户都只是禁用/正常的问题)

问候

Im updating ActiveDirectory from an external HR system. This system wil produce True/False values if an account is disabled or not.
I noticed (from this great forum) examples of how to combine useraccountcontrols but have a question.

If I do as Marc suggested in a previous post

const int UF_ACCOUNTDISABLE = 0x0002;
const int UF_NORMAL_ACCOUNT = 0x0200;

int userControlFlags = UF_NORMAL_ACCOUNT

newUser.Properties["userAccountControl"].Value = userControlFlags;

And alter the UF_NORMAL .. UF_ACCOUNTDISABLE according to the true/false value, will I not erase whatever other flags there was? Or do I just add another value to whatever were there in the first place? (Guess not all account is simply a matter of disabled/normal)

Regards

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

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

发布评论

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

评论(1

剩余の解释 2025-01-02 13:05:03

还不确定它是否会起作用,但我想我也许可以做这样的事情

          int uac = Convert.ToInt32(user.Properties["userAccountControl"][0]);

          if (p.Active.Equals("Y"))
                    uac = uac | ADS_UF_ACCOUNTDISABLE;
          else
                    uac = uac & ~ADS_UF_ACCOUNTDISABLE;

Not sure yet if it will work, but I think I might be able to do something like this

          int uac = Convert.ToInt32(user.Properties["userAccountControl"][0]);

          if (p.Active.Equals("Y"))
                    uac = uac | ADS_UF_ACCOUNTDISABLE;
          else
                    uac = uac & ~ADS_UF_ACCOUNTDISABLE;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文