We're using ASP.NET MVC and AdMembership privider for login, and for various reasons had to implement our own "Change Password on next Login" funtionality.

We also have a nist requirement of not allowing more than one change per 24 hours. so it's set up that way in AD.

What we need is to Ignore that one requirement when resetting a passwrod to default, we want the studetn to be forced to change the password on the next logon, even if it's beofre 24 hours.

here is my stab at it. Basically I want to change the PwdLastSet property to a value more than 24 hours old after we reset the password.

    if ( bSetToDefault )
    {
        var adDate                  = userToActOn.ADEntry.Properties[ "PwdLastSet" ][ 0 ];
        DateTime passwordLastSet    = DateTime.FromFileTime( ( Int64 ) adDate );
        passwordLastSet             = System.DateTime.Now.AddHours( -25 );
        long filetime               = passwordLastSet.ToFileTimeUtc();
        userToActOn.ADEntry.Properties[ "PwdLastSet" ][ 0 ] = filetime;
    }

But I keep getting null back even when I know the users password has been changed.

anyone got any hints or suggestions? Am I looking in the wrong property?

Thanks,

Eric-

link|improve this question

65% accept rate
feedback

2 Answers

up vote 1 down vote accepted

hmm this attribute is replicated so should always be available. Try the command line script to see if it shows up:

http://www.rlmueller.net/PwdLastChanged.htm

Its possible because its a 64bit date and not doing a conversion? Try the script though and see if it works. if it does, then look at the Integer8Date procedure in it for your date conversion.

link|improve this answer
That did output it, and I used the code there to get it, but how do I set it? Thanks. – Eric Brown - Cal Apr 28 '11 at 19:43
You cannot - you can only set to 0 (expires now) or -1 (reset the tie to right now) – Adam Tuliper Apr 28 '11 at 19:52
feedback

If you use System.DirectoryServices.AccountManagement then there is an exposed method for the User Principal to expire the password immediately. So it will be as easy as calling it like such oUserPrincipal.ExpirePasswordNow(); for more info about using it please see this article.

link|improve this answer
If I do that they can't login at all. – Eric Brown - Cal Apr 28 '11 at 21:01
Are you sure? Because that method will expire the password and when they log in it ill ask them to change. In MS Documentation it is defined as "Expires the password for this account. This will force the user to change his/her password at the next logon." – Raymund Apr 28 '11 at 21:07
The controls I'm using don't support changeing the password before we login, I dont' remember why, it's been along time since I messed wtih it, but we couldn't get it to work. it's an asp.net logon control that's had it's setting set to unwind it into multiple controls in html. the change password control, didn't, unless you were logged in. – Eric Brown - Cal Apr 28 '11 at 21:26
ROFL, I googled it and got my own stackoverflow posting. it's because the AdMembershipProvider does not natively support it. (Go StackOverflow!) stackoverflow.com/questions/5584951/… – Eric Brown - Cal Apr 28 '11 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.