vote up 0 vote down star

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?

flag

20% accept rate

2 Answers

vote up 0 vote down

try

exec sp_displaylogin

to get the perms for the settings for an individual user, logged in as that user.

link|flag
vote up 0 vote down

You can use sp_configure to set all users password expiration date

sp_configure "systemwide password expiration", 30
go

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.