I want to run a report to make sure the password of every user is set to expire every 30 days, but the expiration interval doesn't seem to be stored in syslogins?
|
|
|
|
|
|
|
try exec sp_displaylogin to get the perms for the settings for an individual user, logged in as that user. |
||
|
|
|
|
You can use sp_configure to set all users password expiration date
will set all users passwords to expire after 30 days. Not sure if this value can be read for a report though. The default is 0. |
||
|
|
