I have an Organizational Unit in my Active Directory having ‘//’ in its name for example ‘Turbo//Boost’.
and when I try to find users using directory searcher it throws error
Unknown Error(0x80005000)
Any idea how can I solve this issue?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you have forward slashes in your OU name, you need to “escape” those characters when searching by prepending them with a backslash.
So try searching for :
ou=Turbo\/\/Boost– that should work.See the Characters to Escape page by Richard Mueller for a complete list of all “dangerous” characters that need to be escaped in LDAP.