nefas Posted February 19, 2009 Posted February 19, 2009 (edited) 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 February 19, 2009 by nefas
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now