vote up 0 vote down star

I want to query Active Directory from SQL Server like this, but retrieving only current users. I presume the way to do this is to check the 'accountExpires' field.

This is made slightly tricky since dates in AD are stored as the number of 100 nanosecond intervals since January 1, 1601 (UTC). In the accountExpires field a value of 0 or 0x7FFFFFFFFFFFFFFF (9223372036854775807) indicates that the account never expires.

Does anyone have some code for doing this date conversion, or another technique for querying active users - maybe some ldap syntax?

So I want something like:

SELECT *
FROM OPENQUERY(ADSI, 'SELECT sAMAccountName
FROM ''LDAP://DC=MyDC,DC=com,DC=uk''
WHERE objectCategory = ''Person''
AND objectClass = ''user''
AND ( accountExpires = 0 
   OR accountExpires > Now() )')

or replacing Now() with some sql-converted getdate().

flag

36% accept rate
First you should talk to your AD techs about what policies they have in place. They may not use accountExpires. For example, them might only use it for temporary workers on fixed contracts. Your AD techs might disable the account, instead, so you could check that. You could also check the lastLogonTimestamp for accounts that haven't been used for n days (+/- a few - see the docn) if there's no policy in place at all. – serialhobbyist Nov 2 at 17:10

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.