Active Directory 帐户过期
如果我可以指导,请请求他们的支持,以便获取我的活动目录中您的帐户即将到期的用户列表。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅这篇精彩的 MSDN 杂志文章在 .NET Framework 3.5 中管理目录安全主体
在第 8 节中,作者讨论了如何查询常见的事情,例如查找帐户将在给定时间段内过期的用户。
通过执行类似这样的简单操作,您可以找到帐户将于 12 月 15 日到期的所有用户:
现在您有一个即将到期的
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:
Now you have a list of
UserPrincipal
accounts that will expire soon.