|
|
Available in EFT Server 6.1 and later. |
The ICIClientSettings::IsPasswordAgeLimited method to retrieve whether the user account password will expire and, if so, the expiration date.
HRESULT IsPasswordAgeLimited(
[out] VARIANT* pDate, // expiration date (if password will ex-pire)
[out, retval] VARIANT_BOOL* pLimited); // password will expire?
Example (VBScript):
If Client.IsPasswordAgeLimited(date) Then
MsgBox "Client Password will expire " & CStr(date)
End If