Top "Active-directory" questions

Active Directory (AD) is a distributed directory service created by Microsoft.

How can I implement single sign-on (SSO) using Microsoft AD for an internal PHP app?

I'm vaguely aware that on a computer joined to a domain IE can be asked to send some extra headers …

php active-directory apache2 nginx single-sign-on
LDAP/AD filter - "objectclass not equal to" is not working

I am working with LDAP Active Directory and trying to list all users. I have this filter which works perfect: (&…

php active-directory ldap ldap-query
Check UserID exists in Active Directory using C#

How can we check whether the USERID exists in Active Directory or not. I have LDAP String and UserID, can …

c# active-directory userid
LDAP Filter - Find all users of specific OU

I am having trouble with an LDAP Search Filter. What I am needing to retrieve is all the users of …

php active-directory ldap ldap-query
Server is unwilling to process the request - Active Directory - Add User via C#

I used the example in this page to add a user to an Active Directory group, but I get an …

active-directory active-directory-group
Active Directory Services: PrincipalContext -- What is the DN of a "container" object?

I'm currently trying to authenticate via Active Directory Services using the PrincipalContext class. I would like to have my application …

c# .net-3.5 active-directory directoryservices
Get Local Admin Accounts on every computer in OU

I am trying to get a list of all user accounts in the administrators group on their respected machines, of …

powershell active-directory admin administrator ou
Checking for the existence of an AD object; how do I avoid an ugly error message?

I have a bit of code that looks like this: if (Get-ADUser $DN -EA SilentlyContinue) { # Exists } else { # Doesn't Exist } Unfortunately, …

powershell error-handling active-directory powershell-3.0
Built-in helper to parse User.Identity.Name into Domain\Username

Is there any built-in utility or helper to parse HttpContext.Current.User.Identity.Name, e.g. domain\user to get …

c# asp.net .net authentication active-directory
How can I search users in Active Directory based on surname and first name?

I'm trying to search for users in AD with their surname (sn) and first name (givenName) using DirectorySearcher in .NET. …

c# active-directory directorysearcher