AdvancedFilters.LastPasswordSetTime(DateTime, MatchType) 方法

定义

LastPasswordSet 属性的查询筛选器设置为指定的 DateTime 和指定的比较值。

public:
 void LastPasswordSetTime(DateTime passwordSetTime, System::DirectoryServices::AccountManagement::MatchType match);
public void LastPasswordSetTime (DateTime passwordSetTime, System.DirectoryServices.AccountManagement.MatchType match);
member this.LastPasswordSetTime : DateTime * System.DirectoryServices.AccountManagement.MatchType -> unit
Public Sub LastPasswordSetTime (passwordSetTime As DateTime, match As MatchType)

参数

passwordSetTime
DateTime

DateTime 对象。

match
MatchType

一个 MatchType,它指定在比较中应如何使用 passwordSetTime

示例

// Create the principal context for the usr object.  
PrincipalContext ctx = new PrincipalContext(ContextType.Domain, "fabrikam.com", "CN=Users,DC=fabrikam,DC=com", "administrator", "SecurelyStoredPassword");  

// Create the principal user object from the context  
UserPrincipal usr = new UserPrincipal(ctx);  

// Set the advanced query filter  
usr.AdvancedSearchFilter.LastPasswordSetTime(DateTime.Now.AddDays(-30), MatchType.LessThan);  

// Create a PrincipalSearcher object.  
PrincipalSearcher ps = new PrincipalSearcher(usr);  
PrincipalSearchResult<Principal> results = ps.FindAll();  

//Force users who have not changed their password in the last  
//30 days to do so at next logon  
foreach (UserPrincipal u in results)  
{  
	u.ExpirePasswordNow();  
	u.Save();  
}  

注解

时间默认为 UTC。 如果要以本地时间指定时间,请将 对象的 属性DateTime指定KindDateTimeKind.Local

适用于

另请参阅