In c# how does one set the value of the AD property "pwdLastSet"

This is not working:

DateTime passwordLastSetTarg  = System.DateTime.Now.AddHours( -25 );

var adDate                    = userToActOn.ADEntry.Properties[ "pwdLastSet" ].Value;
long filetime                 = passwordLastSetTarg.ToFileTimeUtc();

userToActOn.ADEntry.Properties[ "pwdLastSet" ][ 0 ] = filetime;

This is closely related to my last question, but I hope it's not redundant, if so sorry.

link|improve this question

65% accept rate
Your formatting hurts my head. – Yuriy Faktorovich Apr 28 '11 at 19:46
feedback

2 Answers

up vote 2 down vote accepted

You can't set it to a date - only to 0 (expires now) or -1 (reset the time to 'now' )

link|improve this answer
That's the behavior I'm seeing. Basically I want my webservice to change the password and ignore the 24 wait rule in ad, so they can immediately reset it on logon. Any way to do this? – Eric Brown - Cal Apr 28 '11 at 20:14
What happens if you just set the password in code? Do you get an exception or does it work? – Adam Tuliper Apr 28 '11 at 20:18
The webservice can do it directly, ignoring all AD password based rule, but the change password stuff uses the Membership provider, so all the other rules will be applied then, like password complexity, it's just specifically the "wait 24 hours" I need to skip and only if it's set via the web service. If i recode the page to use the service, then no rules are ever applied. – Eric Brown - Cal Apr 28 '11 at 20:57
feedback

Unless I'm misreading the MSDN docs, this is a read-only property - as I'd have expected it would be. It's up to AD to set this as and when a user changes their password.

link|improve this answer
I agree this is a read only property, if you use System.DirectoryServices.AccountManagement the LastPasswordSet property of the UserPrincipal is only get, no set – Raymund Apr 28 '11 at 20:51
You can definitly set it to 0, I didnt' check -1 but I assume it works too, you can't set it to a Int64 FileTime of 25 hours ago, those are the cases I tested. – Eric Brown - Cal Apr 28 '11 at 21:21
FYI not using System.DirectoryServices.AccountManagement , but with a DirectoryEntry. – Eric Brown - Cal Apr 29 '11 at 14:44
feedback

Your Answer

 
or
required, but never shown

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