Jump to content

LDAP: search User per lastname


nefas
 Share

Recommended Posts

Hi,

i'f got an problem with en LDAP querry.

So, if i try to search for an user an i'll give up the lastname per variable, its return an error

sample:

Dim $nefOU = 'OU=###,DC=###,DC=###,DC=###';Wegen betriebsinternen verändert
Dim $asUser
Dim $UserLastName

Func Search_LDAP()
    
    $UserLastName = '"(name='&GUICtrlRead($txtUser)&'*)"'

    
    _ADGetObjectsInOU($asUser, $nefOU, $UserLastName,2,"DisplayName,samAccountName,co,l,telephonenumber,physicalDeliveryOfficeName,department,mail,globa


l-ExtensionAttribute1,global-ExtensionAttribute2,distinguishedName,homeDirectory,scriptPath","DisplayName")
    _ArrayDisplay($asUser)
EndFunc

an the error is:

==> The requested action with this object has failed.:
$objRecordSet = $objCommand.Execute
$objRecordSet = $objCommand.Execute^ ERROR

thx for ur help.

P.S. SOLVED!

$UserLastName = GUICtrlRead($txtUser)&"*"

_ADGetObjectsInOU($asUser, $nefOU, "(&(Name="&$UserLastName&"))", 2, "DisplayName,samAccountName,co,l,telephonenumber,physicalDeliveryOfficeName,department,mail,globa

l-ExtensionAttribute1,global-ExtensionAttribute2,distinguishedName,homeDirectory,scriptPath","DisplayName")

ps: sorry for my english, i'm a german boy :)

Edited by nefas
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...