DirectoryEntry is a .Net class that encapsulates a node or object in the Active Directory Domain Services hierarchy.

learn more… | top users | synonyms

0
votes
0answers
7 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
45 views

DirectoryEntry.CommitChanges() 'cannot create a file when that file already exists'

We have many web applications and services that use the IIS 6.0 System.DirectoryServices/metabase.xml model to programmatically modify IIS configuration; which need to move from Server 2003 to Server ...
0
votes
0answers
56 views

IIS 7.5 and ASP.NET using Oracle LDAP - Credentials Persist After Sign Out

Using Forms Authentication in IIS 7.5 ASP.NET against Oracle LDAP. Using DirectoryEntry to check for a valid entry based on user credentials. Once the user enters the credentials the first time, ...
0
votes
1answer
37 views

C# accessing DirectoryEntry via impersonation will throw a catastrophic exception for the first time only

I am impersonating a user using this c# code: SafeTokenHandle logon_token = null; SafeTokenHandle duplicate_token = null; const int LOGON32_PROVIDER_DEFAULT = 0; const int ...
0
votes
0answers
14 views

DirectoryEntry “domainDNS” and a dash

I have code that gets the domain name using DirectoryEntry and iterating until it finds SchemaClassName with a value of "domainDNS". It has worked for months without issue. However, today someone ...
1
vote
0answers
89 views

AccessViolationException: Attempted to read or write protected memory - IIS access using DirectoryEntry

I was trying to find a folder under a web applicaiton in IIS using the follwing code and I met with the following error: AccessViolationException: Attempted to read or write protected memory. The ...
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 ...
1
vote
2answers
78 views

Is there a way to authenticate with DirectoryServices to LDAP using MD5?

I'm using VS 2012, C#.NET and creating a form to authenticate through LDAP. I have this code, and it's working well: root = new DirectoryEntry( "LDAP://192.168.116.20:389", ...
0
votes
1answer
50 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 ...
0
votes
1answer
181 views

How to get the host/IP and port of a website iis 6-7?

Here is my problem. I wish I could list all the IIS web site that is hosted locally. And for each I would like to retrieve the site name, the host name ex. ("localhost: 80") and the port number. I can ...
1
vote
3answers
738 views

How do I query LDAP from C# to resolve Oracle TNS hostname while using managed ODP.NET?

Further to my previous Question, which I managed to answer myself with help from the Oracle forums, I now have another issue which follows on from the earlier one (provided for background). I wish to ...
0
votes
0answers
42 views

How can i generate a directoryentry instance from WindowsIdentity?

I am using: private static DirectoryEntry ConsultarActiveDirectory(WindowsIdentity wi) { DirectoryEntry dir = new DirectoryEntry(); try { SecurityIdentifier sid = wi.User; ...
1
vote
1answer
621 views

How to add a new application pool in iis 5.1 in the code c#?

I am trying to add a website on IIS 5.1 When I try to create an application pool for my new site with my function below, I have this strange error "system.directoryNotFound Exception ... in ...
0
votes
2answers
309 views

How I can find a user in Active Directory Group with SubGroups?

I have a Problem with ASP.NET and Active Directory. I want to find out whether the User is in a Groupe of the Active Directory and if he is in this Group he can see more. For this I write a Function ...
2
votes
1answer
409 views

System.IO.FileNotFoundException: The network path was not found. Exception while using DirectoryEntry object on windows 7

i am trying to connect to remote windows 7 machine by using DirectoryEntry object. here is my code DirectoryEntry obDirEntry = new DirectoryEntry("WinNT://hostName", "hostName\\testUser", ...
0
votes
1answer
112 views

DirectoryEntry object “dispose” method stuck

I found a big broblem in my code, while using DirectoryEntry object. When calling "Dispose" method, the program get stuck. Any idea what could cause this? Here is the code: foreach (DirectoryEntry ...
0
votes
2answers
170 views

Filter DirectoryEntry objects based on objectClass

I have created an Active Directory object browser using the WPF TreeView element, but I want to only add OUs to my tree. I feel like I am very close, here is my code thus far for my Item.Expanded ...
0
votes
0answers
161 views

DirectoryEntry.Invoke() method not working for Adding local user in local group

I am trying to add a local user to a local group in Windows, using the DirectoryEntry class. Here is my code DirectoryEntry DirEntry = new DirectoryEntry("WinNT://133.12.2.2/RAOne,group", ...
3
votes
0answers
62 views

DirectoryEntry returns unusable value but does not throw any exception, C# [duplicate]

Possible Duplicate: How to know if my DirectoryEntry is really connected to my LDAP directory? I am calling DirectoryEntry() with an invalid Domain on purpose to test how my C# application ...
0
votes
1answer
385 views

Create XML DOM of a Directory structure

If got a method that returns a treenode based upon a Directory private static TreeNode GetDirectoryNodes(string path) { var dir = new DirectoryInfo(path); var node = ...
0
votes
1answer
503 views

LDAP port 636 DirectoryEntry properties do not contain groupmembership although LDAP does

In C# I am binding to a secure LDAP site with the following code authServer = new DirectoryEntry("LDAP://whatever.com:636", authServerUsernameFromConfig, ...
1
vote
2answers
1k views

Can't get user from Directoryentry

I am getting crazy here, I'd really appreciate some help! simply I want to get user name or anything from Active Directory using DirectoryEntry class. I used userprinciple and it works great, but the ...
1
vote
1answer
258 views

Get all users in localgroup using DirectoryEntry LINQ C#

I am trying to wrap my head around LINQ, so I can figure out how to query the DirectoryEntry. At the monent I am trying to write some code in C# that will take a string varible and gave a list of ...
0
votes
1answer
329 views

Access is denied when creating virtual directory

I got this error Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) when I try to create Virtual Directory using vb.net code with asp.net web forms and the following the ...
0
votes
1answer
640 views

Active Directory Adding User Properties

I am trying to add a property/attribute to a user entry in Active Directory. I don't have any trouble updating property values using the following code. string LDAPString = "LDAP://DC=oc,DC=edu"; ...
0
votes
0answers
218 views

Retrieving group members with DirectoryEntry and c# doesn't work

I try using the following code to retrieve all users which are in a local group on a workgroup server. But all groups shows 0 members, which can't be. Is there something wrong with the code ? // ...
0
votes
1answer
218 views

How I create a LDAP Filter with City (“l”) Parameter

I wrote a Program that get Data from the Active Directory and I need a LDAP filter that filter the Data to l (city) Parameter. My Code: public void SearchByCity(string city) { ...
1
vote
1answer
1k views

How I can find a User with the GUID(objectGUID) Parameter in Active Directory

In my ASP.NET Application I get Informations from Active Directory. I must get Informations about a User with the GUID Informations (example: a28a6a34dsfdsf57d9e54f945a241) but I don't know how I can ...
0
votes
1answer
95 views

Querying list of domains available , Environment is having multiple NIC cards for two different domains

I am using LDAP for querying the list of domains available. My logic works fine when i run this on a machine where one nic card is available and it is successfully querying the list of domains, ...
1
vote
1answer
521 views

LDAP bind to ActiveDirectory succeeds when user is locked out, under some conditions

I'm testing the behavior of the .net LDAP client when a bad password is provided enough times to trigger a lockout. I see this odd behavior: it seems that if the process successfully connected at ...
0
votes
0answers
81 views

opendir and readdir encoding strings behind my back?

(You can skip the details to the last couple of lines if you're able to answer the question :) ) I'm on an Ubuntu 12.04. I'm trying to resolve an old issue that I've posted about in the past (if ...
-1
votes
2answers
660 views

Get List of Local Network Computer Names

I am using visual studio 2010 and I have searched on the net for help and other people using the DirectoryEntry("WinNT:") but it doesn't seem to work for me. I can see my network workgroups and if I ...
2
votes
2answers
955 views

Set Windows/AD password so that it “never expires”?

Here is my code: using (DirectoryEntry AD = new DirectoryEntry("WinNT://" + Environment.MachineName + ",computer")) { DirectoryEntry NewUser = AD.Children.Add(username, "user"); string ...
0
votes
1answer
1k views

Adding a local user to a local group in C#

I can add a user perfectly well, but then I can't add it to a local group. I get this error:- A member could not be added to or removed from the local group because the member does not exist. ...
0
votes
2answers
903 views

Get 2000 of 6000 records from DirectorySearcher

I have a code which either gets 1000 or all the results using DirectorySearcher. But I want to get only 2000 of 6000 results. Here is the code to get 6000 results whereas I only want 2000 ...
0
votes
1answer
554 views

Get a list of all computers and also if it is logged into AD

I'm trying to recive all computers in my AD and also which of them whos currently logged in. I've tryed doing this by checking the "lastLogonStamp" but that returns the wrong value, saying my server ...
1
vote
1answer
512 views

Why has my DirectoryEntry stopped working suddenly?

I have been working with the DirectoryEntry objects in the DirectoryServices namespace and it has been going very well. But I made changes to one of my LDAP classes and all of a sudden it has stopped ...
0
votes
3answers
176 views

DirectoryEntry string working as literal but not as formatted string?

Ok so i'm trying to pull a user from active directory into a DirectoryUser object and if I type it like this, it works fine: DirectoryEntry user = new DirectoryEntry(@"LDAP://CN=Name, OU=Department, ...
-2
votes
1answer
216 views

DirectoryEntry ObjectSecurity null reference Exception

I try to enable windows account with this code but i ve exception in ObjectSecurity (Null reference) in this line ActiveDirectorySecurity userSecurity = user.ObjectSecurity;
0
votes
1answer
330 views

How to validate windows user?

I use the following code to validate the users who belong to our company domain. This works fine. using (var entry = new DirectoryEntry("")) { DirectorySearcher ds = new DirectorySearcher(entry); ...
0
votes
1answer
307 views

WinNT Always authenticates Local User to True (NativeObject never faults)

I've read that the below code is the way to authenticate a user against WinNT. I've been trying to authenticate a user on my local machine. For what ever reason, root.NativeObject never throws an ...
2
votes
1answer
167 views

Passing empty strings or nulls to DirectoryEntry constructor

Noticed a strange thing today. I have some code like this in a project I'm working on: var directoryEntry =new DirectoryEntry( ConfigurationManager.AppSettings["path"], ...
4
votes
1answer
2k views

Impersonation and DirectoryEntry

I am impersonating a user account successfully, but I am not able to use the impersonated account to bind to AD and pull down a DirectoryEntry. The below code outputs: Before impersonation I am: ...
1
vote
2answers
519 views

How to add NT AUTHORITY\IUSR to Administrators group

I want to add the IUSR account to that administrators group in my winforms application. The code below fails because it cant find a user for "NT AUTHORITY\IUSR": DirectoryEntry AD = new ...
3
votes
2answers
2k views

ASP.Net (IIS 7.5) Querying Active Directory without User Credentials

I have multiple web applications that I've built for our intranet. I wanted to allow users to not worry about logging in, so these apps pull the currently logged on user when they hit the site. I used ...
1
vote
1answer
419 views

which port(s) are used by DirectoryEntry?

My goal is to get the list of web site names from remote server. But I'm getting the exception: The RPC server is unavailable. Here is the code: public List<string> GetWebSites(string ...
0
votes
2answers
323 views

exception while trying to connect to Active Directory

As a project for my company I am trying to query two ADs with asp.net c#. A local one and a remote one. The local one didn't give me any trouble, connected, queried and every thing is working great. ...
1
vote
1answer
315 views

How to force LDAP to use a secondary local IP Address in .NET?

I need to access a remote LDAP server behind a firewall (using C#/.NET) for user authentication. The firewall at the remote site is set to allow a specific IP address, but it is not the primary IP ...
3
votes
1answer
2k views

How to set AccountExpires in VB.NET via a AD DirectoryEntry

I needed to set the accountExpires property in the AD DirectoryEntry couldn't find a simple answer. Found some information; ...
-1
votes
1answer
489 views

How i can get windows logon domain name from AD domain name

I have AD domain name like MyDomain.com and Windows logon domain name like MD (MD=MyDomain). How I can get win logon domain name from AD domain using DirectoryEntry.Properties collection?

1 2