Active Directory 帐户过期

发布于 2024-10-06 09:08:50 字数 49 浏览 6 评论 0原文

如果我可以指导,请请求他们的支持,以便获取我的活动目录中您的帐户即将到期的用户列表。

Requesting their support if I can guide in order to obtain a list of users that is soon to expire your account on my active directory.

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

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

发布评论

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

评论(1

送你一个梦 2024-10-13 09:08:50

请参阅这篇精彩的 MSDN 杂志文章在 .NET Framework 3.5 中管理目录安全主体

第 8 节中,作者讨论了如何查询常见的事情,例如查找帐户将在给定时间段内过期的用户。

通过执行类似这样的简单操作,您可以找到帐户将于 12 月 15 日到期的所有用户:

// establish domain context
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

// find users whose accounts will expire by Dec 15
PrincipalSearchResult<UserPrincipal> users = 
      UserPrincipal.FindByExpirationTime(ctx, new DateTime(2010, 12, 15), 
                                         MatchType.LessThanOrEquals);

现在您有一个即将到期的 UserPrincipal 帐户列表。

See this great MSDN magazine article Managing Directory Security Principals in the .NET Framework 3.5

In section 8, the authors talk about how to query for common things like finding users whose accounts will expire in a given period of time.

By doing something quite simple like this, you can find all users whose account will expire by Dec 15:

// establish domain context
PrincipalContext ctx = new PrincipalContext(ContextType.Domain);

// find users whose accounts will expire by Dec 15
PrincipalSearchResult<UserPrincipal> users = 
      UserPrincipal.FindByExpirationTime(ctx, new DateTime(2010, 12, 15), 
                                         MatchType.LessThanOrEquals);

Now you have a list of UserPrincipal accounts that will expire soon.

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