Directory Services |
The IADsUser::SetPassword method sets the user password to a specified value. For the LDAP provider, the user account must have been created and stored in the underlying directory using IADs::SetInfo before IADsUser::SetPassword is called.
The WinNT provider, however, allows you to set the password on a newly created user object prior to calling SetInfo. This ensures that you create passwords that comply with the system password policy before you create the user account.
HRESULT SetPassword( BSTR bstrNewPassword );
The LDAP provider for Active Directory uses one of three processes to set the password; third-party LDAP directories such as iPlanet do not use this password authentication process. The method may vary according to the network configuration. Attempts to set the password occur in the following order:
The NDS, NWCOMPAT, WinNT and LDAP system providers all support SetPassword. The NDS provider, however, only supports SetPassword on objects in containers where Bindery emulation is enabled.
The following code example shows how to set the user password, if you have the permission to do so.
Dim usr As IADsUser Dim szPassword As String On Error GoTo Cleanup ' Add code to securely get the password. Set usr = GetObject("LDAP://MyLdapSvr/CN=JeffSmith,DC=Fabrikam") usr.SetPassword szPassword Cleanup: If (Err.Number<>0) Then MsgBox("An error has occurred. " & Err.Number) End If Set usr = Nothing
The following code example shows how to set the user password, if you have the permission to do so.
HRESULT SetPassword(IADsUser *pUser, BSTR password) { HRESULT hr=S_OK; if(!pUser) { return E_FAIL;} hr = pUser->SetPassword(password); if (hr == S_OK) printf("User password has been set"); pUser->Release(); return hr; }
Client: Included in Windows XP and
Windows 2000 Professional.
Server: Included in Windows Server 2003 and
Windows 2000 Server.
Redistributable: Requires Active Directory Client Extension
on Windows NT 4.0 SP6a and Windows 95/98/Me.
Header: Declared in Iads.h.
IADsMembers, IADsUser, IADsUser Property Methods, IADs::SetInfo, ADSI Error Codes, IADsServiceOperations