Notifying Clients of Password Status

You can set properties in the metabase which will notify a client when his or her password has expired or is about to expire. This feature also gives the client the opportunity to change the password at the time of the notification, or to continue with the original request. These metabase properties are used to configure the implementation of the feature.

Note   Administrators do not have to set any of these properties for this feature to work. These properties are automatically set in the metabase during IIS setup.

The following metabase properties control this feature.

These metabase properties can be set through the use of a script. An example of such a script follows:

<% 
Dim IIsObj, vDay 
Set IIsObj = GetObject("IIS://LocalHost/W3SVC")
'Get the value from the object vDay = IIsObj.Get("PasswordExpirePrenotifyDays")
'Can also use object.property syntax vDay = IIsObj.PasswordExpirePrenotifyDays
'Set the values vDay = 10
'Put the values back in the object IIsObj.Put "PasswordExpirePrenotifyDays", (vDay)
'Use optional object.property syntax IIsObj.PasswordExpirePrenotifyDays = vDay
'Save the changes back to the metabase IIsObj.SetInfo %>

© 1997 by Microsoft Corporation. All rights reserved.