System.DirectoryServices is the .NET library used to access Microsoft's Active Directory, which holds information about users, groups, computers, permissions and more

learn more… | top users | synonyms (2)

0
votes
0answers
18 views

Change password for remote machine User Account that has “current password = empty”

I want to change the password for remote machine's user account. I'm doing this way: PrincipalContext context = new PrincipalContext(ContextType.Machine, "xxx.xxx.xxx.xxx" /*Remote machine IP ...
0
votes
1answer
5 views

A first chance exception of type 'System.DirectoryServices.Protocols.LdapException' occurred in System.DirectoryServices.Protocols.dll

I have an Asp.Net MVC 2 application with Windows Authentication enabled. Till yesterday, it was working fine. Today when I hit F5, I'm getting the exception. I googled but nothing helped. Any help?
0
votes
0answers
12 views

How to avoid WMI DirectoryEntry caching failed connections

When making a WMI call using DirectoryEntry in C# it appears that a failure is cached so that retries immediately fail without retrying. Here's what I've done to reproduce this: DirectoryEntry ...
0
votes
0answers
13 views

PrincipalContext.ValidateCredentials doesn't set lastLogon date for user

I'm validating users in an Active Directory store as follows: // using System.DirectoryServices.AccountManagement; // located in System.DirectoryServices.AccountManagement.dll using (var context = ...
0
votes
1answer
30 views

Load AD group members to include nested groups c#

I am using AD to populate a list of the company associates. I have an AD group from which I am iterating through (using System.DirectoryServices.AccountManagement) to populate the list. The group in ...
2
votes
0answers
23 views

How to programmatically determine if an Active Directory trust is transitive in OpenLDAP?

When using OpenLDAP, I can get the trustAttributes, trustType, and trustDirection attributes from the AD server. However, it isn't clear from the documentation how to determine (in all cases) when a ...
1
vote
0answers
38 views

Can't access directory services from server - DirectoryServicesCOMException

I'm trying to query AD in an ASP.Net (4.0) application that is running on Windows Server 2008 R2 (IIS7 installed). In runs fine on my local computer (Windows 7), but not on the server. I'm trying to ...
0
votes
1answer
35 views

Using different methods of System.DirectoryServices.ActiveDirectory.Domain

The static method of GetCurrentDomain() works without issue but, when I try to use another method such as FindDomainController(), I receive a MethodNotFound exception error.
0
votes
0answers
70 views

Difference between PrincipalSearcher.FindAll() and GroupPrincipal.FindByIdentity()

I am trying to get all the members of a local group from a remote hosts. I found a way using the System.DirectoryServices.AccountManagement namespace but I end up with inconsistencies... ...
0
votes
1answer
61 views

UserPrincipal.FindByIdentity throws PrincipalServerDownException

I have an application that needs to bind against a remote customer's Active Directory to perform authentication tasks. using (var ctx = new PrincipalContext(ContextType.Domain, "customer.org", ...
0
votes
1answer
84 views

System.DirectoryServices.AccountManagement PrincipalContext impersonation to create new user

In Sharepoint (or any ASP.NET web application) I want to have a function to create AD users. I'm using System.DirectoryServices.AccountManagement for this task, but I'm getting into trouble. Here is ...
0
votes
0answers
41 views

C# Directory Services wrong Certificate thumbprint

SO Community, I ran across an interesting "anomaly" (as I see it) in the System.DirectoryServices .NET assembly as it relates to retrieving properties from DirectoryEntry objects. For reference, I ...
0
votes
0answers
21 views

A suitable way to store the data of a tree in a directory service - Java

I am trying to implement a directory service distributed system between a client and a server. I am using JAVA to write the code files of the client and the server. The directory service should have ...
1
vote
0answers
80 views

System.DirectoryServices.AccountManagement.Principal.GetGroups returns only one group “Domain User” for some users

The code below was working a few weeks ago, but recently it stopped getting the groups for many user accounts, and I can't figure out what changed. The code has not changed. The .GetGroups() method ...
0
votes
0answers
31 views

Error 8000500c on accessing DirectoryServices Properties

I am a first time poster and I hope someone can help me out with this one. I have a bit of code that does authentication against an LDAP server (I believe it is a Novell eDirectory) and then ...
1
vote
0answers
16 views

System.DirectoryServices produces .PageRequestManagerServerErrorException when deployed in production

I am getting this error Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server ...
1
vote
1answer
43 views

edirectory read custom property value Unknown error (0x8000500c)

Strange things happen... I was forced to move to a new developer machine (Windows Server 2008 R2 to 2012). The exact same code doesn't work on the new machine. public override ...
0
votes
1answer
43 views

AD: Group does not have a primaryGroupToken attribute

I need to change the primary group of a user, so I can delete it from it's current one. But my group does not have the attribute "primaryGroupToken", which I need in order to change the primary group ...
0
votes
3answers
96 views

How can I filter users by group membership across multiple OU's?

I have a user query that can't be done at an OU level. I am trying to only return users where they are a member of a group (I need to filter by the group string value, not the actual group object). ...
0
votes
1answer
118 views

Retrieving OU's from Active Directory

I am trying to fetch a list of OU's from active directory. Unfortunately my search always ends up without any results even though I know there are 2 OU's inside the "myApp" domain component. using ...
0
votes
1answer
53 views

Search for a Local user in a local group that does not have Foreign Security policy

Basically I found a post that has a solution for a problem we are having in our application and the solution was: private static void listGroupMembers(string groupDistinguishedName, ...
0
votes
0answers
71 views

Cross-domain searching error with System.DirectoryServices.Protocols

I recently re-engineered a C# app using System.DirectoryServices to replicate data to use System.DirectoryServices.Protocols instead. In a scenario where the app is binding with the same credentials ...
1
vote
0answers
125 views

How to get all members of a local WinNT group?

When I retrieve members of a local WinNT group, someway somehow not all members are returned. I do add: Active Directory users Active Directory groups Both successful (see picture), but only the ...
0
votes
0answers
48 views

Exception regarding context options for creating new user with System.DirectoryServices.AccountManagement

I need to create new users in AD with a randomly generated password that must be reset on first login. I can connect without issue using DirectoryEntry but I would like to use ...
1
vote
1answer
280 views

VB.net creating new AD user account using UserPrincipalEx?

I'm having a heck of a time trying to add fields like department and title. I'm using this to create a user account: Dim ctx As New PrincipalContext(ContextType.Domain, "domain.name.pvt", ...
1
vote
0answers
160 views

Can I create a DirectorySearcher filter using only extensionAttribute1?

I have a class using DirectorySearcher that returns results just fine based on the following optional filters: samAccountName givenname sn However, I need to create a directorysearcher that returns ...
1
vote
2answers
196 views

OpenLdap C# bind with escaped characters in Distinguished Name

I have some working LDAP code in which we rebind to the found user in order to validate the user, using his distinguished name. Effectively this is what is happening: string userDn = ...
1
vote
2answers
79 views

Is it possible to get Group Notes from Active Directory?

Active Directory groups have a 'Notes' property available through the interface (see image below) Is it possible to retrieve this information in C#? I can't seem to find the property that holds ...
0
votes
0answers
95 views

Cannot query Active Directory using ServerBind on non-domain computer in Windows PE

I have a need to write a .NET application which will query Active Directory while running in Windows PE on a computer which is not yet a member of the domain. We are running this during a Microsoft ...
0
votes
1answer
51 views

Why does removing a local group via WinNT protocol results in a NotImplementedException?

Imagine the following code sample: void RemoveGroup(string groupName) { string path = string.Format("WinNT://domain/myServer/{0}", groupName); using (DirectoryEntry entry = new ...
1
vote
1answer
166 views

Having problems adding users to an Active Directory group using C#

Okay, my problem right now is we're trying to write code that will add a user to a different group in our Active Directory. This is the solution we've written. Part of the main method: string ...
0
votes
1answer
80 views

How to set a binary attribute when using a AccountManagement Extension Class?

I am using a custom class to expose some custom schema in Active Directory. I am storing a binary blob, per the project requirements this data must be stored in the AD, I can not use a external store ...
0
votes
1answer
157 views

Delete User: The directory service can perform the requested operation only on a leaf object

I have a vb page to search for a specified user in Active Directory and delete this. This script has allways runned fine. But now I receive an error for some users: The directory service can perform ...
0
votes
0answers
94 views

DirectoryServices - how to get original locking domain controller?

I've been using System.DirectoryServices with C# to do all kinds of useful things in Active Directory. I am now trying to find for any given user which domain controller locked them. If you use ...
1
vote
2answers
414 views

Create PrincipalContext using windows authentication

I'm creating a PrincipalContext object for retrieving a user's groups from our AD database (we use these then for authentication to various parts of the site). This used to be done using forms ...
1
vote
1answer
44 views

Replicated LDAP server

When we restart a replicated (consumer or mirrored) LDAP server, it accepts the connection from the clients even if it is out of sync. Is it expected? i.e. can a client bind with an LDAP server which ...
2
votes
2answers
251 views

Using DirectoryServices.AccountManagement, how do I get the e-mail address of an active directory security group?

I have a security group (pictured below) in active directory that has an e-mail address associated with it. How do I get the e-mail address of the group? The GroupPrincipal object does not have any ...
2
votes
2answers
749 views

UserPrincipal.FindByIdentity throws exception - There is no such object on the server

I'm struggling with a simple scenario: I would like to retrieve my account from Active Directory using the username and password which I use to log into my computer. My first issue was that I was ...
0
votes
1answer
58 views

Override groupprincipal.members.add

Anyone knows if it is possible to override or extend the Members.Add method on a System.DirectoryServices.AccountManagement.GroupPrincipal object? I would like to do something like this public new ...
0
votes
2answers
205 views

.Invoke(“SetPassword”, …) results in “RPC server is unavailable” error

I have a page to create new users in our active directory using VB.NET I’m using the following code Dim rootEntry As New DirectoryEntry With rootEntry .Path = "LDAP://" & strServer & "/" ...
1
vote
0answers
489 views

How to get the NETBIOS Domain Name using the FQDN in a Complex Environment

Getting the NETBIOS domain name from a fully qualified Active Directory domain name is sometimes a tedious task. I found a good answer here. In an environment with multiple forests this approach will ...
1
vote
0answers
198 views

Processing a powershell SecureString as a parameter or console entry

I'm having a lot of difficulty with a powershell script that I'm trying to call a DirectoryServices query from. Currently, if I do a $password = read-host "Password" -asSecureString and ...
0
votes
1answer
149 views

Adding a SMTP email to proxyAddresses of the DirectoryEntery

DirectoryEntry toFix = new DirectoryEntry(groupPath, privilegedUserName, privilegedPassword, AuthenticationTypes.Secure); Is there a way to add "SMTP:bleh@myemail.com" to the existing list of ...
1
vote
4answers
2k views

System.DirectoryServices.DirectoryServicesCOMException: An operations error occurred

I have the same web app working in three others servers. Anyone have any idea why is not working in the 4th server? See the error and stacktrace: An operations error occurred. Description: An ...
0
votes
1answer
53 views

PrincipalSearcher.FindByIdentitiy() memory leak

In the MSDN entry for PrincipalSearcher.FindByIdentitiy(), Gary Caldwell noted (at the bottom in Community Content) that a memory leak results from the use of this method because "the underlying ...
1
vote
1answer
865 views

How to prevent DirectoryOperationException - The server cannot handle directory requests

I am attempting to write a utility method to update AD attributes (just single valued string attributes for now) in C#. This is a stand-alone utility that does not rely on IIS. This method will be ...
0
votes
1answer
91 views

PrincipalSearcher filter all records that do not match

Is there any way to do a search for all records that do NOT match using PrincipalSearcher. Using DirectorySearcher you can apply a filter like (!sn="\*Jay\*"). In other words, all records where the ...
0
votes
1answer
167 views

Issue with LDAP for retrieving room list for exchange 2007

I am trying to find all Meeting rooms for Exchange Server 2007 using c#. I found an easy way to do this by using EWS Managed API: ...
1
vote
0answers
39 views

ARC steeling my reference object (ODQuery)?

I'm slightly new to cocoa and have followed apples example here: Open Directory programming guide In the example they grab the ODQuery object with a retain, this is not allowed anymore and I can't ...
1
vote
0answers
559 views

Using DirectoryEntry.Invoke(“SetPassword”, …) to set initial AD account password, I get “RPC server is unavailable” error

The company I'm working in has a web service that can create new Active Directory accounts based on information that is typed in e.g. username, firstname, lastname, OU1, OU2, etc. This web service ...

1 2 3 4 5 8