Tagged Questions

2
votes
1answer
2k views

DirectoryEntry to change password: Different behavior between Vista/Server2008

On a Vista dev machine I used this code successfully to change user "Administrator" password: directoryEntry.Invoke("SetPassword", "new"); When I moved it over to my Server 2008 dev machine that ...
2
votes
7answers
637 views

Optimum tempory password length for SHA hash

When creating a "forgotten password" mechanism, we might want to create a tempory password for the user which is stored using SHA1 (feel free to suggest other C# Cryptography mechanism). How long ...
0
votes
1answer
13 views

Receiving error in changing the password using System.DirectoryServices

I've a web service deployed on one of the servers which internally uses System.DirectoryServices to change password using following code : DirectoryEntry obDirectoryEntry = ...
0
votes
1answer
40 views

Active directory - How to know the error produced when changing password?

When I try to change a password from a web I get the next error: The password supplied is invalid. Passwords must conform to the password strength requirements configured for the default provider. ...
0
votes
1answer
203 views

Asp.net Change Password Control

In my asp.net Web app. I have a change password form that is not working properly. I set the LoginEvent cancel to false when it has changed. It changes ok, but the control thinks that it fails. Is ...