Password Never Expires (WinNT Provider)
Per abilitare questa opzione usando il provider WINNT ADSI, impostare il flag ADS_UF_DONT_EXPIRE_PASSWD (0x10000 ) sull'attributo UserFlags .
Nota
Per Windows 2000 e versioni successive, usare il provider ADSI LDAP per le operazioni di gestione degli utenti, come illustrato. Per altre informazioni, vedere Password Never Expires (LDAP Provider).
Esempio 1
Nell'esempio di codice seguente viene illustrato come impostare l'opzione password non scade mai usando Visual Basic con ADSI.
Const ADS_UF_DONT_EXPIRE_PASSWD = &H10000
Dim usr as IADs
Set usr = GetObject("WinNT://Fabrikam/JeffSmith")
oldFlags = usr.Get("UserFlags")
newFlags = oldFlags Or ADS_UF_DONT_EXPIRE_PASSWD
usr.Put "UserFlags", newFlags
usr.SetInfo
Esempio 2
L'esempio di codice seguente illustra come impostare l'opzione password non scade mai usando C++ con ADSI.
#include <activeds.h>
IADsUser *pUser = NULL;
VARIANT var;
VariantInit(&var);
HRESULT hr = S_OK;
LPWSTR adsPath;
adsPath = L"WinNT://Fabrikam/JeffSmith";
hr = ADsGetObject(adsPath,IID_IADsUser, (void**)&pUser);
CComBSTR sbstrUserFlags = "UserFlags";
hr = pUser->Get(sbstrUserFlags, &var);
V_I4(&var) |= ADS_UF_DONT_EXPIRE_PASSWD;
hr = pUser->Put(sbstrUserFlags, var);
hr = pUser->SetInfo();
VariantClear(&var);
pUser->Release();