Tagged Questions
System.DirectoryServices is the .NET library used to access Microsoft's Active Directory, which holds information about users, groups, computers, permissions and more
11
votes
4answers
774 views
Memory Leak when using DirectorySearcher.FindAll()
I have a long running process that needs to do a lot of queries on Active Directory quite often. For this purpose I have been using the System.DirectoryServices namespace, using the DirectorySearcher ...
8
votes
5answers
2k views
How to get all the AD groups for a particular user?
I checked this post already. But it doesn't answer my question. I want to get all the active directory groups in which a particular user is a member.
I've written the following code. But I'm not able ...
8
votes
6answers
8k views
How do I loop through a PropertyCollection - C#
Can anyone provide an example of how to loop through a System.DirectoryServices.PropertyCollection and output the property name and value?
I am using C#.
@JaredPar - The PropertyCollection does not ...
7
votes
1answer
2k views
Strange issue with System.DirectoryServices.AccountManagement.UserPrincipal.FindByIdentity
We're writing a system that allows a user to change their account password through a web application on our intranet.
At first, everything appeared to be running smoothly. During development ...
6
votes
1answer
3k views
How to determine if user account is enabled or disabled
I am throwing together a quick C# win forms app to help resolve a repetitive clerical job.
I have performed a search in AD for all user accounts and am adding them to a list view with check boxes.
I ...
6
votes
5answers
725 views
Why would this catch all block not in fact catch all
The code is fairly simple --- the issue is that there is an invalid character in the groupPath string (a '/' to be exact).
What I'm trying to do (at least as a stop gap) is skip over DirectoryEntries ...
5
votes
1answer
251 views
Determine if user is in AD group for .NET 4.0 application
I am trying to determine if a user is a member of an Active Directory (AD) group for an internal ASP.NET 4.0 application. The code below throws an "Attempted to access an unloaded appdomain" ...
5
votes
2answers
1k views
LDAP Query for OU's
Sorry for being an uber pain people, its all very new :(
Already had alot of help on this, but don't seem to be able to see the problem, I am trying to populate a combo box with a list of all the ...
5
votes
2answers
6k views
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 authenticate to the Domain using Sealed and SSL contexts. In ...
5
votes
3answers
3k views
How to programaticly change Active Directory password
I have a set of test accounts that are going to be created but the accounts will be setup to require password change on the first login. I want to write a program in C# to go through the test ...
4
votes
2answers
349 views
If an OU contains 3000 users, how to use DirectorySearcher to find all of them?
I use this code:
DirectoryEntry objEntry;
DirectorySearcher objSearchEntry;
SearchResultCollection objSearchResult;
string strFilter = "(&(objectCategory=User))";
objEntry = new ...
4
votes
1answer
213 views
Network utilization - AccountManagement vs. DirectoryServices
I spend more than a day to find out that the Principal object is using way more bandwidth than the using the DirectoryServices. The scenario is like this. I have a group with ~3000 computer objects in ...
4
votes
3answers
448 views
How to get indirect groups of an AD user? - C#
I'm using DirectorySearcher to get the groups of an AD user in which he is a member of using the 'memberof' property. But according to this msdn page the 'memberof' property only returns the direct ...
4
votes
2answers
751 views
How to get Active Directory Attributes not represented by the UserPrincipal class
What I mean is that right now I am using System.DirectoryServices.AccountManagement and if I use UserPrincipal class I only see the Name, Middle Name, etc
so in my codes it like
UserPrincipal myUser ...
4
votes
1answer
353 views
Searching for multiple users with PrincipalSearcher
Is it possible to search for multiple user names with a single PrincipalSearcher call. Maybe by providing an 'OR' of the requested user names as the filter criteris ?
4
votes
1answer
3k views
Get Groups From OU using DirectoryServices.AccountManagement
I'd like to use AccountManagement to list all the groups in an Organizational Unit.
The following snippet works with DirectoryServices but I would have to instanciate GroupPrincipal with the ...
4
votes
2answers
1k views
How to change System.DirectoryEntry “uSNChanged” attribute value to an Int64
I'm trying to get the Int64 value of a Directory Services object's "uSNChanged" value. Unfortunately, it is always coming back as a COM object of some kind. I've tried using casting to Int64, calling ...
4
votes
1answer
2k views
“Domain Users” group is empty when I use DirectoryServices “member” property
I'm using the following code to get the members of a group on my domain:
Dim de As New DirectoryEntry("LDAP://" & GroupDN)
For Each user As String In CType(de.Properties("member"), ...
3
votes
1answer
296 views
Why does changing user's “Primary Group” from “Domain Users” in Active Directory stymie a recursive search for users?
Given the following simple OU/Group hierarchy:
OU=MyApplication
CN=CompanyClients(objectClass="group"; Members="Clients\Client1")
OU=Clients
CN=Client1(objectClass="group"; ...
3
votes
3answers
2k views
Create an application pool that uses .NET 4.0
I use the following code to create a app pool:
var metabasePath = string.Format(@"IIS://{0}/W3SVC/AppPools", serverName);
DirectoryEntry newpool;
DirectoryEntry apppools = new ...
3
votes
2answers
1k views
UserPrincipal.FindByIdentity Permissions
I'm attempting to use the .NET System.DirectoryServices.AccountManagement library to obtain the UserPrincipal for a particular Active Directory user.
I've got the following code:
PrincipalContext ...
3
votes
1answer
1k views
Error with UserPrincipal.GetAuthorizationGroups() method
I am having an issue using the GetAuthorizationGroups method of the UserPrincipal class in a web application.
Using the following code, I am receiving "While trying to retrieve the authorization ...
3
votes
2answers
1k views
Acquiring AD OU list
I am looking to be able to pull a list of current OU's from Active Directory I have been looking at some example code online for sometime, but O don't seem to be able to get this to work.
...
3
votes
4answers
5k views
Error 0x80005000 and DirectoryServices
I'm trying to run a simple LDAP query using directory services in .Net.
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://someserver.contoso.com/DC=contoso,DC=com");
...
3
votes
2answers
3k views
Does System.DirectoryServices.DirectoryEntry contain a constructor that actually uses “domain\username” with Ldap?
Microsoft has a general purpose KB article (Q316748) describing how to authenticate against Active Directory using the DirectoryEntry object. In their example they produce a username value by ...
3
votes
1answer
3k views
How do I determine if an “IIsWebDirectory” or “IIsWebVirtualDir” is an ASP.NET Application?
I am currently writing an C# asp.net application to connect to an IIS server and query the virtual directory/web directory information.
I am able to determine that there are that two types I should ...
3
votes
2answers
984 views
Using ActiveDirectoryMembershipProvider with two domain controllers
We have an ASP.NET application running at a customer site that uses ActiveDirectory for user login via the ActiveDirectoryMembershipProvider. Their primary domain controller that we were pointing to ...
2
votes
1answer
96 views
C# Active Directory PrincipalContext / UserPrincipal.IsMemberOf error
So I have a question I'm honestly not quite sure how to ask. Essentially I have a bit of code that works fantastically on my local machine when I run it. Once I publish it to our development web ...
2
votes
1answer
115 views
Prevent subcontainer objects in PrincipalSearcher Query C#
How can I prevent subcontainer objects in queries to a specific OU with subcontainers (child OU)?
To clarify, I don't want to include user objects in children OUs (subcontainers) in the result set.
...
2
votes
1answer
278 views
How to get the numeric ID of an IIS 6 Metabase property in C#?
The code below works OK and can read everything in a remote IIS 6 server's metabase -- except the frikkin' numeric ID of the properties. I can't find them in the PropertyValueCollection object.
var ...
2
votes
1answer
88 views
How can I check a user/password combination on an ActiveDirectory without putting the password in a String?
I want to check User/Password combination on a Windows domain. Right now I do it with the following code:
bool Login(String username, String password) {
var principalContext = new ...
2
votes
1answer
132 views
help with finding user using directory service account management
I'm having an issue when trying to pass the value into the method via a parameter (userName). If I hard code the value, it will find the user.
Any guidance would be greatly appreciated,
protected ...
2
votes
1answer
374 views
Counting Active Directory Security group members
First, I have to enumerate all the AD groups of the current user. Getting the SID and the name is easy:
foreach(var group in WindowsIdentity.GetCurrent().Groups)
{
var sid = new ...
2
votes
2answers
388 views
get printer in Active directory restricted or not
I create a C# application that communicate with AD and I want to get if the printer is resticted or not from properties and its a piece of code here
deSearch.Filter = ...
2
votes
1answer
356 views
Automatic log in to Active Directory
I am having some difficulty with doing an automated login for users in my desktop Active Directory application. I may be trying to do an SSO, but I am under the impression that is only for web ...
2
votes
1answer
974 views
Find the domain component from a PrincipalContext
I am trying to find out the domain component via Active Directory Services using a PrincipalContext.
I created the PrincipalContext using very few parameters:
PrincipalContext theContext = new ...
2
votes
1answer
671 views
UserPrincipal.GetGroups fails with unknown error
I am trying to get all Active Directory groups for a user, with the following code:
private static IEnumerable<string> GetGroupNames(string userName)
{
using (var context = new ...
2
votes
1answer
227 views
What permissions are required for enumerating users groups in Active Directory
I have a .net web application which needs to obtain the groups a user is a member of in Active Directory.
Todo this I am using the memberOf attribute on the users records.
I need to know the ...
2
votes
3answers
279 views
Active Directory Is User Deactivated Code Snippet Needed?
Can some post the way to know if a particular user is a deactivated user in the windows ad ?
2
votes
1answer
2k views
Active Directory List OU's
I have this code currently,
string defaultNamingContext;
DirectoryEntry rootDSE = new DirectoryEntry("LDAP://RootDSE");
defaultNamingContext = ...
2
votes
1answer
390 views
Extending GroupPrincipal and Members property
I want to extend the GroupPrincipal class to handle some custom properties:
using System.DirectoryServices.AccountManagement;
[DirectoryRdnPrefix("CN")]
[DirectoryObjectClass("group")]
public class ...
2
votes
1answer
2k views
DirectoryEntry to change password: Different behavior between Vista/Server2008
On a Vista dev machine I used this code successfully to change user "Administrator" password:
directoryEntry.Invoke("SetPassword", "new");
When I moved it over to my Server 2008 dev machine that ...
2
votes
1answer
192 views
Properly disposing resources when connecting to LDAP using C# Directory Services
It seems to me that one should always properly dispose resources when calling Directory Services API with no exception (yet many samples, blogs and tutorials often ignore, or do one way with this ...
2
votes
2answers
404 views
Calling commitChanges() does nothing in Active Directory?
It seems that the changes are not saving within ActiveDirectory despite me using the CommitChanges function. Am I using the correct approach to solve this issue?
//Test OU Group: OU=First ...
2
votes
1answer
562 views
Active Directory not finding all users in C#
I have some code that queries Active Directory to verify user existence. I am trying to verify a long list of about 1300 ids. I've tried several methods to verify if a user account (LINQ to AD, ...
2
votes
2answers
1k views
How to list all computers and the last time they were logged onto in AD?
I am trying to retrieve a list of Computer Names and the date they were last logged onto from Active Directory and return them in a datatable.
Getting the names is easy enough but when I try to add ...
2
votes
4answers
8k views
Connecting to LDAP from C# using DirectoryServices
I am trying to connect to an edirectory 8.8 server running LDAP. How would I go about doing that in .Net? Can I still use the classes in System.DirectoryService such as DirectoryEntry and ...
2
votes
1answer
452 views
FindByIdentity in System.DirectoryServices.AccountManagment Memory Issues
I'm working on an active directory managament application. In addition to the typical Create A New User, Enable/Disable an account, reset my password etc. it also managages application permissions ...
2
votes
3answers
232 views
How to abandon a long-running search in System.DirectoryServices.Protocols
I've been trying to work out how to cancel a long-running AD search in System.DirectoryServices.Protocols. Can anyone help?
I've looked at the supportControl/supportedCapabilities attributes on ...
2
votes
8answers
6k views
“Access Denied” when trying to connect to remote IIS server - C#
I receive an "Access Deined" COMException when I try to connect to a remote IIS 6 server from my C# application that is running under IIS 5.1.
Any ideas? I am experiencing all the same issues with ...