如何使用 lockoutTime 解锁 AD 中的用户帐户

发布于 2024-11-28 15:05:42 字数 794 浏览 0 评论 0原文

我想通过将 lockoutTime 属性设置为零来解锁 AD 中的用户帐户。问题在于该属性的值是 System_ComObject。如何将属性值设置为零?我使用以下代码来获取 lockOut 的值。

DirectoryEntry user = DirectoryEntry(DistinguishedName);

//user.Properties["lockoutTime"].Value is a System_Com object

long fileTicks = LongFromLargeInteger(user.Properties["lockoutTime"].Value);

private long LongFromLargeInteger(object largeInteger)
{
    System.Type type = largeInteger.GetType();
    type = largeInteger.GetType();
    int highPart = (int)type.InvokeMember("HighPart", 
    BindingFlags.GetProperty, null, largeInteger, null);
    int lowPart = (int)type.InvokeMember("LowPart", BindingFlags.GetProperty, null, largeInteger, null);
    return (long)highPart << 32 | (uint)lowPart;
}

I want to unlock user account in AD by setting the lockoutTime attribute to zero. The problem is that the value of the property is a System_ComObject. How do I set the value of the attribute to zero? I have used the following code to get the value of lockOut.

DirectoryEntry user = DirectoryEntry(DistinguishedName);

//user.Properties["lockoutTime"].Value is a System_Com object

long fileTicks = LongFromLargeInteger(user.Properties["lockoutTime"].Value);

private long LongFromLargeInteger(object largeInteger)
{
    System.Type type = largeInteger.GetType();
    type = largeInteger.GetType();
    int highPart = (int)type.InvokeMember("HighPart", 
    BindingFlags.GetProperty, null, largeInteger, null);
    int lowPart = (int)type.InvokeMember("LowPart", BindingFlags.GetProperty, null, largeInteger, null);
    return (long)highPart << 32 | (uint)lowPart;
}

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

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

发布评论

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

评论(1

凉墨 2024-12-05 15:05:42

您需要做的就是:

user.Properties["LockOutTime"].Value = 0;
user.CommitChanges();

All you need to do is this:

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