TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
merlish
NA
59
62.4k
How can we check disabled user in active directory?
Sep 19 2011 3:22 AM
i am working asp.net 2003. i use the following code. when the execution reaches to Dim obj As Object = entry.NativeObject then it will show the logon failure for the user. if it is disabled user. but if it is enabled user it will work fine.i want to check the idsabled user code. plese help me
Dim domainAndUsername As String = domain + "\" + username
Dim entry As New DirectoryEntry(_path, domainAndUsername, pwd)
Dim obj As Object = entry.NativeObject
Dim search = New DirectorySearcher(entry)
search.Filter = "(SAMAccountName=" + username + ")"
search.PropertiesToLoad.Add("cn")
search.PropertiesToLoad.Add("userAccountControl")
Dim result As SearchResult = search.FindOne()
If (result Is Nothing) Then Return False
' Update the new path to the user in the directory
_path = result.Path
_filterAttribute = result.Properties("cn")(0)
If Not _filterAttribute Is Nothing Then
Dim accountControl As Integer
accountControl = Convert.ToInt32(result.Properties("userAccountControl")(0))
Dim accountDisabled As Integer = Convert.ToInt32(UF_ACCOUNTDISABLE)
Dim flagExists As Integer = accountControl And accountDisabled
If flagExists > 0 Then
Throw New Exception("User Account Is Disabled")
Return False
Else
Return True
End If
End If
Reply
Answers (
3
)
Ado.net dataset no primary key violation
Regular Expression needed