Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Get password expire date

Status
Not open for further replies.

Nordlund

Programmer
Jul 17, 2001
458
SE
Is there a way to get the password expire date for a specific user by using SQL?

I'm using SQL2005



[tt]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Do not underestimate the power of [!]Google[/!][/tt]
 
What type of accounts are they SQL or NT?

If they are NT you may be able to use this method.
The pwdLastSet property is a large integer holding the number of 100ns
intervals since 1601 or something - also known as a FILETIME value.

The DateTime class has a "FromFileTime()" method that will convert that into
a date. Watch out for UTC / local time differences.

In order to see when the password will expire you also need to read the
default domain policy to find out how often a user must change a password.

If you use the WinNT ADSI provider instead of the LDAP ADSI provider you
could get the "PasswordExpirationDate" property which will calculate the
date for you (never tested this though)

There is also a function in SQL Server called loginproperty()

Code:
select loginproperty('your user', 'PasswordLastSetTime')

- Paul [batman]
- If at first you don't succeed, find out if the loser gets anything.
 
Hi and thanks.
The SELECT LOGINPROPERTY works fine, but i have to retrieve the password expiration date

In order to see when the password will expire you also need to read the
default domain policy to find out how often a user must change a password.

But how do I accomplish that by using SQL?

[tt]~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Do not underestimate the power of [!]Google[/!][/tt]
 
Did you ever figure out how to acomplish this with SQL Server 2007? I am trying to do the same thing....determine the password expiration dates for my SQL based passwords. Any assistance would be much appreciate! Thanks!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top