We have a Self Service Employee application running on a standalone server. One of the features of the application is the "forgotten password", so employees can reset to use their own passwords. It works fine on all servers, but not on Windows Server 2008 R2. The following is a snippet of the code we use:
User.Invoke("SetPassword", new object[] {"#12345Abc"});
User.CommitChanges();
It seems that it is generally impossible to get it to work in Windows Server 2008 R2. If this works for someone, please help.
thank
source
share