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.