@H_301_0@Imports System.DirectoryServices
Imports System.Security.Principal
@H_301_0@ Private Sub Button1_Click(ByVal sender As System.Object,ByVal e As System.EventArgs) Handles Button1.Click
Dim r As Boolean = GetUserSID("MyADServer","username","password").Length > 0
MsgBox(r)
End Sub
Public Shared Function GetUserSID(ByVal ldapServer As String,ByVal userName As String,ByVal password As String) As String
Dim strPath As String
If ldapServer.IndexOf("."c) <> -1 Then
strPath = String.Format("LDAP://{0}",ldapServer)
Else
strPath = String.Format("WinNT://{0}/{1},user",ldapServer,userName)
End If
Dim entry As New DirectoryEntry(strPath,userName,password)
Try
Return New SecurityIdentifier(entry.Properties("objectSid").Value,0).Value
Catch
Return ""
Finally
entry.Dispose()
End Try
End Function 原文链接:https://www.f2er.com/vb/260104.html